mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-08 11:24:25 +00:00
node.py: log twisted version along with tahoe/foolscap/zfec versions
This commit is contained in:
parent
ea78b4b605
commit
1160c1def2
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user