convert a print to a debug print

This commit is contained in:
Yann Leboulanger 2013-08-14 11:49:43 +02:00
parent c0c73a39dd
commit 13a4a91d9a
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ class ProxyResolver:
self.state = S_FINISHED
def _on_connect_failure(self):
print 'connection failed: ' + self.host
log.debug('Connection failed with %s:%s' % (self.host, self.port))
self.state = S_FINISHED
self.host = None
self.port = 0