diff options
Diffstat (limited to 'python/knot_resolver/manager/logging.py')
-rw-r--r-- | python/knot_resolver/manager/logging.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/knot_resolver/manager/logging.py b/python/knot_resolver/manager/logging.py index ff140dcd..c9b44653 100644 --- a/python/knot_resolver/manager/logging.py +++ b/python/knot_resolver/manager/logging.py @@ -4,11 +4,12 @@ import os import sys from typing import Optional -from knot_resolver.constants import LOGGING_LEVEL_STARTUP from knot_resolver.datamodel.config_schema import KresConfig from knot_resolver.datamodel.logging_schema import LogTargetEnum from knot_resolver.manager.config_store import ConfigStore, only_on_real_changes_update +from .constants import LOGGING_LEVEL_STARTUP + logger = logging.getLogger(__name__) |