File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
services/web/server/src/simcore_service_webserver Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1111from servicelib .logging_utils import setup_async_loggers_lifespan
1212from 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 ,
You can’t perform that action at this time.
0 commit comments