Codebase list logbook / 39622b6b-0b2a-47f5-93c6-8a11b121dee0/main benchmark / bench_disabled_introspection.py
39622b6b-0b2a-47f5-93c6-8a11b121dee0/main

Tree @39622b6b-0b2a-47f5-93c6-8a11b121dee0/main (Download .tar.gz)

bench_disabled_introspection.py @39622b6b-0b2a-47f5-93c6-8a11b121dee0/mainraw · history · blame

"""Tests with frame introspection disabled"""
from logbook import Logger, NullHandler, Flags


log = Logger('Test logger')


class DummyHandler(NullHandler):
    blackhole = False


def run():
    with Flags(introspection=False):
        with DummyHandler() as handler:
            for x in xrange(500):
                log.warning('this is not handled')