From: tahoe <tahoe@arnowaschk.de>
Date: Sun, 12 Aug 2007 18:53:18 +0000 (-0700)
Subject: shorten ids
X-Git-Url: https://git.rkrishnan.org/%5B/%5D%20/simplejson/%22doc.html/status?a=commitdiff_plain;h=53349c571feee2b788af81f72f9ea829017555a3;p=tahoe-lafs%2Ftahoe-lafs.git

shorten ids
---

diff --git a/src/allmydata/introducer.py b/src/allmydata/introducer.py
index 2e889eb2..caf72969 100644
--- a/src/allmydata/introducer.py
+++ b/src/allmydata/introducer.py
@@ -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,