Codebase list logbook / 323a8b0f-75b0-42a3-ad20-dac8b486870f/main benchmark / bench_disabled_introspection.py
323a8b0f-75b0-42a3-ad20-dac8b486870f/main

Tree @323a8b0f-75b0-42a3-ad20-dac8b486870f/main (Download .tar.gz)

bench_disabled_introspection.py @323a8b0f-75b0-42a3-ad20-dac8b486870f/main

9af17e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
"""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')