Codebase list logbook / lintian-fixes/main benchmark / bench_file_handler.py
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

bench_file_handler.py @lintian-fixes/main

9af17e1
 
 
 
 
 
 
 
 
 
 
 
 
"""Benchmarks the file handler"""
from logbook import Logger, FileHandler
from tempfile import NamedTemporaryFile


log = Logger('Test logger')


def run():
    f = NamedTemporaryFile()
    with FileHandler(f.name) as handler:
        for x in xrange(500):
            log.warning('this is handled')