summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream
diff options
context:
space:
mode:
authorNathan Fritz <fritzy@netflint.net>2009-09-05 07:38:29 +0000
committerNathan Fritz <fritzy@netflint.net>2009-09-05 07:38:29 +0000
commitcb360c94797252291e2016bdc655063dd4670c66 (patch)
tree2bbe517bf05fddd0b1db5913169a51123f5f7f99 /sleekxmpp/xmlstream
parent5593848490e5826ad07da591304ce6e67eb3afb5 (diff)
downloadslixmpp-cb360c94797252291e2016bdc655063dd4670c66.tar.gz
slixmpp-cb360c94797252291e2016bdc655063dd4670c66.tar.bz2
slixmpp-cb360c94797252291e2016bdc655063dd4670c66.tar.xz
slixmpp-cb360c94797252291e2016bdc655063dd4670c66.zip
* fixes
Diffstat (limited to 'sleekxmpp/xmlstream')
-rw-r--r--sleekxmpp/xmlstream/xmlstream.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py
index 198aba0b..bfad7cd9 100644
--- a/sleekxmpp/xmlstream/xmlstream.py
+++ b/sleekxmpp/xmlstream/xmlstream.py
@@ -248,8 +248,8 @@ class XMLStream(object):
def __spawnEvent(self, xmlobj):
"watching xmlOut and processes handlers"
#convert XML into Stanza
+ logging.debug("RECV: %s" % cElementTree.tostring(xmlobj))
xmlobj = self.incoming_filter(xmlobj)
- logging.debug("PROCESSING: %s" % xmlobj.tag)
stanza = None
for stanza_class in self.__root_stanza:
if self.__root_stanza[stanza_class].match(xmlobj):