From c25d173606a63233efd4bbac089b45e61cd69004 Mon Sep 17 00:00:00 2001 From: Dan Date: Mon, 15 Nov 2021 13:39:42 -0500 Subject: [PATCH] Set the default level of logging to be INFO, not DEBUG, we don't want everyone elses debug information. --- config/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/logging.py b/config/logging.py index bddebeee..e85be2b1 100644 --- a/config/logging.py +++ b/config/logging.py @@ -24,7 +24,7 @@ logging_config = { } }, "root": { - "level": "DEBUG", + "level": "INFO", "handlers": [ "console", "file",