From 798693742e2024773f10fcd2826037847f83fa27 Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Sun, 11 Jun 2023 21:05:32 +0200 Subject: [PATCH] logging format --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index e3eb317..492c784 100644 --- a/run.py +++ b/run.py @@ -3,5 +3,5 @@ import logging from src import main if __name__ == '__main__': - logging.getLogger().setLevel(logging.INFO) + logging.basicConfig(format='[%(levelname)s] : %(message)s', level=logging.DEBUG) main.run()