Fix logging exceptions from formatting issues.

This commit is contained in:
Lance Stout 2011-11-19 19:08:27 -08:00
parent 24f27c0fe3
commit 685b9ab102

View file

@ -391,7 +391,7 @@ class XMLStream(object):
try:
if not self.use_proxy:
log.debug("Connecting to %s:%s", self.address)
log.debug("Connecting to %s:%s" % self.address)
self.socket.connect(self.address)
self.set_socket(self.socket, ignore=True)
@ -808,7 +808,7 @@ class XMLStream(object):
if self.dns_answers[0] == address:
break
self.dns_answers.pop(idx)
log.debug("Trying to connect to %s:%s", address)
log.debug("Trying to connect to %s:%s" % address)
return address
def add_event_handler(self, name, pointer,