From f55afe5959aa5e5bb4f26343e679b199d3881175615e6c5aaa2bc516eea5a9a2 Mon Sep 17 00:00:00 2001 From: andrea Date: Sat, 26 Jul 2025 19:13:32 +0200 Subject: [PATCH] logging info --- utils/logs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/logs.py b/utils/logs.py index 4c9e507..85e5698 100644 --- a/utils/logs.py +++ b/utils/logs.py @@ -1,7 +1,7 @@ import logging as _logging logger = _logging.getLogger(__name__) -_logging.basicConfig(filename= 'battle_royale.log', encoding= 'utf-8', level= _logging.DEBUG) +_logging.basicConfig(filename= 'battle_royale.log', encoding= 'utf-8', level= _logging.INFO) def log_debug(txt): logger.debug(txt)