diff options
author | Lance Stout <lancestout@gmail.com> | 2013-09-05 16:27:43 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-09-05 16:27:43 -0700 |
commit | e60401278f8933211eaac168475a3c332d62531c (patch) | |
tree | c7b82cfe37c86c650d23fb32c536dfe252b854e8 /sleekxmpp/__init__.py | |
parent | 24c474a9ec018448846756b33716e5ed973bcdf6 (diff) | |
parent | a030e059931bc37561d4372615dafb3aec242cea (diff) | |
download | slixmpp-e60401278f8933211eaac168475a3c332d62531c.tar.gz slixmpp-e60401278f8933211eaac168475a3c332d62531c.tar.bz2 slixmpp-e60401278f8933211eaac168475a3c332d62531c.tar.xz slixmpp-e60401278f8933211eaac168475a3c332d62531c.zip |
Merge pull request #255 from anton-ryzhov/logging
Add null handler to logging engine
Diffstat (limited to 'sleekxmpp/__init__.py')
-rw-r--r-- | sleekxmpp/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sleekxmpp/__init__.py b/sleekxmpp/__init__.py index 542bb4b6..85ee32b6 100644 --- a/sleekxmpp/__init__.py +++ b/sleekxmpp/__init__.py @@ -6,6 +6,17 @@ See the file LICENSE for copying permission. """ +import logging +if hasattr(logging, 'NullHandler'): + NullHandler = logging.NullHandler +else: + class NullHandler(logging.Handler): + def handle(self, record): + pass +logging.getLogger(__name__).addHandler(NullHandler()) +del NullHandler + + from sleekxmpp.stanza import Message, Presence, Iq from sleekxmpp.jid import JID, InvalidJID from sleekxmpp.xmlstream.stanzabase import ET, ElementBase, register_stanza_plugin |