Skip to content
Snippets Groups Projects
Commit 22761864 authored by patavirt's avatar patavirt
Browse files

Add with_log_level

parent 6389a000
No related branches found
No related tags found
No related merge requests found
# -*- coding:utf-8; eval: (blacken-mode) -*-
import logging
import contextlib
logger = logging.getLogger(__name__)
......@@ -35,5 +36,15 @@ def _init_logging():
logging.config.dictConfig(cfg)
@contextlib.contextmanager
def with_log_level(level):
old_level = int(logger.level)
logger.setLevel(level)
try:
yield
finally:
logger.setLevel(old_level)
_init_logging()
del _init_logging, logging
del _init_logging, logging, contextlib
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment