Remove some extra logging that shouldn't have been in the last commit.
[quix0rs-apt-p2p.git] / 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 twisted.python import log
 
 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):
-        log.msg('New node: id=%r, host=%r, port=%r' % (id, host, port))
         self.fails = 0
         self.lastSeen = datetime(MINYEAR, 1, 1)