From 92cf053c2d3767d201440a7019d1245806aa9ef4 Mon Sep 17 00:00:00 2001 From: Olivier Le Thanh Duong Date: Tue, 18 Feb 2025 16:47:04 +0100 Subject: [PATCH] Default log level to info --- src/aleph/vm/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aleph/vm/conf.py b/src/aleph/vm/conf.py index f33e02f6c..1f6e91e4a 100644 --- a/src/aleph/vm/conf.py +++ b/src/aleph/vm/conf.py @@ -138,7 +138,7 @@ class Settings(BaseSettings): # via the serial console. This break the logs endpoint for program, as such disabling it in prod is not recommended. PRINT_SYSTEM_LOGS = True IGNORE_TRACEBACK_FROM_DIAGNOSTICS = True - LOG_LEVEL = "WARNING" + LOG_LEVEL = "INFO" DEBUG_ASYNCIO = False # Networking does not work inside Docker/Podman