]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
shorten ids
authortahoe <tahoe@arnowaschk.de>
Sun, 12 Aug 2007 18:53:18 +0000 (11:53 -0700)
committertahoe <tahoe@arnowaschk.de>
Sun, 12 Aug 2007 18:53:18 +0000 (11:53 -0700)
src/allmydata/introducer.py

index 2e889eb2a6c4f63bbafb50b2bcd866893bc8639f..caf72969151db2f5283f6249ecadf3010c240428 100644 (file)
@@ -97,7 +97,7 @@ class IntroducerClient(service.Service, Referenceable):
         assert m
         nodeid = b32decode(m.group(1).upper())
         def _got_peer(rref):
-            self.log(" connected to(%s)" % b32encode(nodeid).lower())
+            self.log("connected to %s" % b32encode(nodeid).lower()[:8])
             self.connection_observers.notify(nodeid, rref)
             self.connections[nodeid] = rref
             def _lost():
@@ -105,11 +105,11 @@ class IntroducerClient(service.Service, Referenceable):
                 # not. Could this cause a problem?
                 del self.connections[nodeid]
             rref.notifyOnDisconnect(_lost)
-        self.log(" connecting to(%s)" % furl)
+        self.log("connecting to %s" % b32encode(nodeid).lower()[:8])
         self.reconnectors[furl] = self.tub.connectTo(furl, _got_peer)
 
     def _got_introducer(self, introducer):
-        self.log(" introducing ourselves: %s, %s" % (self, self.my_furl))
+        self.log("introducing ourselves: %s, %s" % (self, self.my_furl[6:13]))
         self._connected = True
         d = introducer.callRemote("hello",
                                   node=self,