node.py: log twisted version along with tahoe/foolscap/zfec versions

This commit is contained in:
Brian Warner 2007-05-31 11:21:06 -07:00
parent ea78b4b605
commit 1160c1def2

View File

@ -1,5 +1,6 @@
import os.path, re
import twisted
from twisted.python import log
from twisted.application import service
from twisted.internet import defer, reactor
@ -60,7 +61,10 @@ class Node(service.MultiService):
m.setServiceParent(self)
self.log("AuthorizedKeysManhole listening on %d" % portnum)
self.log("Node constructed. tahoe version: %s, foolscap version: %s, zfec version: %s" % (allmydata.__version__, foolscap.__version__, zfec.__version__,))
self.log("Node constructed. tahoe version: %s, foolscap: %s,"
" twisted: %s, zfec: %s"
% (allmydata.__version__, foolscap.__version__,
twisted.__version__, zfec.__version__,))
def startService(self):