]> git.mxchange.org Git - quix0rs-apt-p2p.git/commitdiff
Remove some extra logging that shouldn't have been in the last commit.
authorCameron Dale <camrdale@gmail.com>
Thu, 21 Feb 2008 21:43:03 +0000 (13:43 -0800)
committerCameron Dale <camrdale@gmail.com>
Thu, 21 Feb 2008 21:43:03 +0000 (13:43 -0800)
apt_dht_Khashmir/node.py

index 9903b5a511e3097c69226ec93981e23b4f8983d5..580ad9c84dc5226f04b222b21ea6ee30a7a66f23 100644 (file)
@@ -5,7 +5,6 @@ from datetime import datetime, MINYEAR
 from types import InstanceType
 
 from twisted.trial import unittest
 from types import InstanceType
 
 from twisted.trial import unittest
-from twisted.python import log
 
 import khash
 from util import compact
 
 import khash
 from util import compact
@@ -16,7 +15,6 @@ NULL_ID = 20 * '\0'
 class Node:
     """encapsulate contact info"""
     def __init__(self, id, host = None, port = None):
 class Node:
     """encapsulate contact info"""
     def __init__(self, id, host = None, port = None):
-        log.msg('New node: id=%r, host=%r, port=%r' % (id, host, port))
         self.fails = 0
         self.lastSeen = datetime(MINYEAR, 1, 1)
 
         self.fails = 0
         self.lastSeen = datetime(MINYEAR, 1, 1)