Codebase list logbook / 854b2064-14b6-4be9-9d9b-f6a59b8db224/main benchmark / bench_test_handler.py
854b2064-14b6-4be9-9d9b-f6a59b8db224/main

Tree @854b2064-14b6-4be9-9d9b-f6a59b8db224/main (Download .tar.gz)

bench_test_handler.py @854b2064-14b6-4be9-9d9b-f6a59b8db224/mainraw · history · blame

"""Tests the test handler"""
from logbook import Logger, TestHandler


log = Logger('Test logger')


def run():
    with TestHandler() as handler:
        for x in xrange(500):
            log.warning('this is not handled')