mirror of
https://github.com/ceph/ceph
synced 2024-12-14 07:25:50 +00:00
7 lines
167 B
Python
7 lines
167 B
Python
import logging
|
|
|
|
# Inherit teuthology's log level
|
|
teuthology_log = logging.getLogger('teuthology')
|
|
log = logging.getLogger(__name__)
|
|
log.setLevel(teuthology_log.level)
|