diff options
author | Lance Stout <lancestout@gmail.com> | 2011-11-19 19:08:27 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-11-19 19:08:27 -0800 |
commit | 685b9ab1022245196dfe05c6188a0f443c4fe9d6 (patch) | |
tree | e8b527b9429736b638d15faaa2d7246a7f9be512 | |
parent | 24f27c0fe30b2c1f6bca194a1515112cf1bdfed3 (diff) | |
download | slixmpp-685b9ab1022245196dfe05c6188a0f443c4fe9d6.tar.gz slixmpp-685b9ab1022245196dfe05c6188a0f443c4fe9d6.tar.bz2 slixmpp-685b9ab1022245196dfe05c6188a0f443c4fe9d6.tar.xz slixmpp-685b9ab1022245196dfe05c6188a0f443c4fe9d6.zip |
Fix logging exceptions from formatting issues.
-rw-r--r-- | sleekxmpp/xmlstream/xmlstream.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index 6fe6ec51..1c56fdc1 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -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, |