Commit e7e9340d authored by dieter's avatar dieter

fix logging error

parent 0ce8e70b
...@@ -131,7 +131,7 @@ class Protocol(base.Protocol): ...@@ -131,7 +131,7 @@ class Protocol(base.Protocol):
logger.info("Connection to %r cancelled", self.addr) logger.info("Connection to %r cancelled", self.addr)
elif future.exception() is not None: elif future.exception() is not None:
logger.info("Connection to %r failed, %s", logger.info("Connection to %r failed, %s",
(self.addr, future.exception())) self.addr, future.exception())
else: return else: return
# keep trying # keep trying
if not self.closed: if not self.closed:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment