From: Cameron Dale Date: Thu, 21 Feb 2008 21:43:03 +0000 (-0800) Subject: Remove some extra logging that shouldn't have been in the last commit. X-Git-Url: https://git.mxchange.org/?p=quix0rs-apt-p2p.git;a=commitdiff_plain;h=73cd4142671544297b0b7c1e9d107ea66b22b893 Remove some extra logging that shouldn't have been in the last commit. --- diff --git a/apt_dht_Khashmir/node.py b/apt_dht_Khashmir/node.py index 9903b5a..580ad9c 100644 --- a/apt_dht_Khashmir/node.py +++ b/apt_dht_Khashmir/node.py @@ -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)