5 A generic, spec-compliant, thorough implementation of the OAuth
8 :copyright: (c) 2011 by Idan Gazit.
9 :license: BSD, see LICENSE for details.
12 __author__ = 'Idan Gazit <idan@gazit.me>'
18 from logging import NullHandler
20 class NullHandler(logging.Handler):
22 def emit(self, record):
25 logging.getLogger('oauthlib').addHandler(NullHandler())