Codebase list logbook / c8966c0 benchmark / bench_noop.py
c8966c0

Tree @c8966c0 (Download .tar.gz)

bench_noop.py @c8966c0

9af17e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
"""Test with no handler active"""
from logbook import Logger, StreamHandler, NullHandler, ERROR
from cStringIO import StringIO


log = Logger('Test logger')


def run():
    out = StringIO()
    with NullHandler():
        with StreamHandler(out, level=ERROR) as handler:
            for x in xrange(500):
                log.warning('this is not handled')
    assert not out.getvalue()