diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2010-11-23 22:52:48 -0500 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2010-11-23 22:52:48 -0500 |
| commit | 217835b3adddedc9e8c501e8868d0440509ba1d5 (patch) | |
| tree | 87ca06cceaf5af8a6d18fb57b65143cb784fb123 /sleekxmpp/stanza/rootstanza.py | |
| parent | a5b4d8b2d4cda356afddcdab4864d27e165237f7 (diff) | |
| download | alias-217835b3adddedc9e8c501e8868d0440509ba1d5.tar.gz | |
Update to latest version of sleekxmpp
this fixes the bug with service discovery
Diffstat (limited to 'sleekxmpp/stanza/rootstanza.py')
| -rw-r--r-- | sleekxmpp/stanza/rootstanza.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sleekxmpp/stanza/rootstanza.py b/sleekxmpp/stanza/rootstanza.py index 2677ea9..6975c72 100644 --- a/sleekxmpp/stanza/rootstanza.py +++ b/sleekxmpp/stanza/rootstanza.py @@ -15,6 +15,9 @@ from sleekxmpp.stanza import Error from sleekxmpp.xmlstream import ET, StanzaBase, register_stanza_plugin +log = logging.getLogger(__name__) + + class RootStanza(StanzaBase): """ @@ -58,7 +61,7 @@ class RootStanza(StanzaBase): self['error']['text'] = "SleekXMPP got into trouble." else: self['error']['text'] = traceback.format_tb(e.__traceback__) - logging.exception('Error handling {%s}%s stanza' % + log.exception('Error handling {%s}%s stanza' % (self.namespace, self.name)) self.send() |
