Codebase list logbook / debian/0.10.0-1 benchmark / bench_noop_filter_on_handler.py
debian/0.10.0-1

Tree @debian/0.10.0-1 (Download .tar.gz)

bench_noop_filter_on_handler.py @debian/0.10.0-1raw · history · blame

"""Like the filter test, but with the should_handle implemented"""
from logbook import Logger, StreamHandler, NullHandler
from cStringIO import StringIO


log = Logger('Test logger')


class CustomStreamHandler(StreamHandler):
    def should_handle(self, record):
        return False


def run():
    out = StringIO()
    with NullHandler():
        with CustomStreamHandler(out) as handler:
            for x in xrange(500):
                log.warning('this is not handled')
    assert not out.getvalue()