Codebase list logbook / 7e41e78b-d633-4bb2-9787-9589652ceae7/main benchmark / bench_noop_filter_on_handler.py
7e41e78b-d633-4bb2-9787-9589652ceae7/main

Tree @7e41e78b-d633-4bb2-9787-9589652ceae7/main (Download .tar.gz)

bench_noop_filter_on_handler.py @7e41e78b-d633-4bb2-9787-9589652ceae7/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()