Inherit teuthology's log level

Signed-off-by: Zack Cerza <zack@redhat.com>
This commit is contained in:
Zack Cerza 2015-01-07 09:53:38 -07:00
parent b23da9797a
commit 31ff241f5a

View File

@ -0,0 +1,6 @@
import logging
# Inherit teuthology's log level
teuthology_log = logging.getLogger('teuthology')
log = logging.getLogger(__name__)
log.setLevel(teuthology_log.level)