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

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

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