convert a print to a debug print

This commit is contained in:
Yann Leboulanger 2013-08-14 11:49:43 +02:00
parent 5e2686134d
commit c6e2c5665d
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