diff options
Diffstat (limited to 'qa/tasks/__init__.py')
-rw-r--r-- | qa/tasks/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qa/tasks/__init__.py b/qa/tasks/__init__.py new file mode 100644 index 00000000..9a7949a0 --- /dev/null +++ b/qa/tasks/__init__.py @@ -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) |