From: Brian Warner Date: Thu, 31 May 2007 18:21:06 +0000 (-0700) Subject: node.py: log twisted version along with tahoe/foolscap/zfec versions X-Git-Tag: allmydata-tahoe-0.3.0~46 X-Git-Url: https://git.rkrishnan.org/frontends/FTP-and-SFTP.rst?a=commitdiff_plain;h=1160c1def274ccff7466b5a23bde67e8159cc267;p=tahoe-lafs%2Ftahoe-lafs.git node.py: log twisted version along with tahoe/foolscap/zfec versions --- diff --git a/src/allmydata/node.py b/src/allmydata/node.py index 58e6132a..81b8b1eb 100644 --- a/src/allmydata/node.py +++ b/src/allmydata/node.py @@ -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):