diff options
author | Lance Stout <lancestout@gmail.com> | 2011-12-15 12:04:14 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-12-15 12:04:14 -0800 |
commit | 8f9d1bcfe07f3b2302634464eed1e329b71f54ba (patch) | |
tree | b439366a0edeed47d269e1f9327b88a1d7e113ee /sleekxmpp/xmlstream/xmlstream.py | |
parent | a7a2fd1d5bd770e0df2c2df240acd57fe5e40ea9 (diff) | |
parent | f6e30edbc4a717b34bbf01d3d0a9fe884c6b37da (diff) | |
download | slixmpp-8f9d1bcfe07f3b2302634464eed1e329b71f54ba.tar.gz slixmpp-8f9d1bcfe07f3b2302634464eed1e329b71f54ba.tar.bz2 slixmpp-8f9d1bcfe07f3b2302634464eed1e329b71f54ba.tar.xz slixmpp-8f9d1bcfe07f3b2302634464eed1e329b71f54ba.zip |
Merge branch 'develop-1.1' of github.com:fritzy/SleekXMPP into develop-1.1
Diffstat (limited to 'sleekxmpp/xmlstream/xmlstream.py')
-rw-r--r-- | sleekxmpp/xmlstream/xmlstream.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index 8f662e88..66dd657a 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -1276,8 +1276,6 @@ class XMLStream(object): :param xml: The :class:`~sleekxmpp.xmlstream.stanzabase.ElementBase` stanza to analyze. """ - log.debug("RECV: %s", tostring(xml, xmlns=self.default_ns, - stream=self)) # Apply any preprocessing filters. xml = self.incoming_filter(xml) @@ -1291,6 +1289,9 @@ class XMLStream(object): if stanza is None: return + log.debug("RECV: %s", tostring(xml, xmlns=self.default_ns, + stream=self)) + # Match the stanza against registered handlers. Handlers marked # to run "in stream" will be executed immediately; the rest will # be queued. |