Merge pull request #282 from ceph/wip-10469

Inherit teuthology's log level
This commit is contained in:
Zack Cerza 2015-01-07 10:10:28 -07:00
commit bae3bc8ead

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)