Skip to content

Commit 6499829

Browse files
committed
LOG_LEVEL instead of log_level
1 parent bd9b0e6 commit 6499829

File tree

1 file changed

+2
-2
lines changed
  • services/director/src/simcore_service_director

1 file changed

+2
-2
lines changed

services/director/src/simcore_service_director/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
_the_settings = ApplicationSettings.create_from_envs()
1313

1414
# SEE https://github.com/ITISFoundation/osparc-simcore/issues/3148
15-
logging.basicConfig(level=_the_settings.log_level) # NOSONAR
16-
logging.root.setLevel(_the_settings.log_level)
15+
logging.basicConfig(level=_the_settings.DIRECTOR_LOGLEVEL)
16+
logging.root.setLevel(_the_settings.DIRECTOR_LOGLEVEL)
1717
config_all_loggers(
1818
log_format_local_dev_enabled=_the_settings.DIRECTOR_LOG_FORMAT_LOCAL_DEV_ENABLED,
1919
logger_filter_mapping=_the_settings.DIRECTOR_LOG_FILTER_MAPPING,

0 commit comments

Comments
 (0)