diff options
Diffstat (limited to 'sleekxmpp/clientxmpp.py')
-rw-r--r-- | sleekxmpp/clientxmpp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/clientxmpp.py b/sleekxmpp/clientxmpp.py index 1816649a..73ab8075 100644 --- a/sleekxmpp/clientxmpp.py +++ b/sleekxmpp/clientxmpp.py @@ -175,6 +175,7 @@ class ClientXMPP(BaseXMPP): if not address: # If all else fails, use the server from the JID. address = (self.server, 5222) + logging.debug("The server is %s" % self.server) return XMLStream.connect(self, address[0], address[1], use_tls=True) |