Codebase list logbook / 71235d0b-adb4-4b86-8514-d1693dc35069/main benchmark / bench_enabled_introspection.py
71235d0b-adb4-4b86-8514-d1693dc35069/main

Tree @71235d0b-adb4-4b86-8514-d1693dc35069/main (Download .tar.gz)

bench_enabled_introspection.py @71235d0b-adb4-4b86-8514-d1693dc35069/mainraw · history · blame

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


log = Logger('Test logger')


class DummyHandler(NullHandler):
    blackhole = False


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