Codebase list logbook / 61db662a-aa54-48c2-8f42-facbd50b4153/main benchmark / bench_noop_filter_on_handler.py
61db662a-aa54-48c2-8f42-facbd50b4153/main

Tree @61db662a-aa54-48c2-8f42-facbd50b4153/main (Download .tar.gz)

bench_noop_filter_on_handler.py @61db662a-aa54-48c2-8f42-facbd50b4153/mainraw · 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()