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/xmlstream/stanzabase.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/xmlstream/stanzabase.py')
| -rw-r--r-- | sleekxmpp/xmlstream/stanzabase.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py index f4d66aa..aabd386 100644 --- a/sleekxmpp/xmlstream/stanzabase.py +++ b/sleekxmpp/xmlstream/stanzabase.py @@ -16,6 +16,9 @@ from sleekxmpp.xmlstream import JID from sleekxmpp.xmlstream.tostring import tostring +log = logging.getLogger(__name__) + + # Used to check if an argument is an XML object. XML_TYPE = type(ET.Element('xml')) @@ -1140,7 +1143,7 @@ class StanzaBase(ElementBase): Meant to be overridden. """ - logging.exception('Error handling {%s}%s stanza' % (self.namespace, + log.exception('Error handling {%s}%s stanza' % (self.namespace, self.name)) def send(self): |
