Skip to content

Commit edf7553

Browse files
committed
cleanup
1 parent c759a3f commit edf7553

File tree

1 file changed

+2
-3
lines changed
  • services/web/server/src/simcore_service_webserver

1 file changed

+2
-3
lines changed

services/web/server/src/simcore_service_webserver/log.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
from servicelib.logging_utils import setup_async_loggers_lifespan
1212
from simcore_service_webserver.application_settings import ApplicationSettings
1313

14-
LOG_LEVEL_STEP: Final[int] = logging.CRITICAL - logging.ERROR
15-
NOISY_LOGGERS: Final[tuple[str, ...]] = (
14+
_NOISY_LOGGERS: Final[tuple[str, ...]] = (
1615
"aio_pika",
1716
"aiormq",
1817
"engineio",
@@ -36,7 +35,7 @@ def setup_logging(app_settings: ApplicationSettings) -> CleanupEvent:
3635
exit_stack.enter_context(
3736
setup_async_loggers_lifespan(
3837
log_base_level=app_settings.log_level,
39-
noisy_loggers=NOISY_LOGGERS,
38+
noisy_loggers=_NOISY_LOGGERS,
4039
log_format_local_dev_enabled=app_settings.WEBSERVER_LOG_FORMAT_LOCAL_DEV_ENABLED,
4140
logger_filter_mapping=app_settings.WEBSERVER_LOG_FILTER_MAPPING,
4241
tracing_settings=app_settings.WEBSERVER_TRACING,

0 commit comments

Comments
 (0)