From cb99c6af491ecae046cfb06b9933afd0831bd631 Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Sat, 23 Jan 2021 17:04:13 -0500 Subject: [PATCH] Adjust the default logging level --- 3/3.12 Seasons/seasons/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3/3.12 Seasons/seasons/main.py b/3/3.12 Seasons/seasons/main.py index 5ebb56c..3e0c082 100644 --- a/3/3.12 Seasons/seasons/main.py +++ b/3/3.12 Seasons/seasons/main.py @@ -1,7 +1,7 @@ from datetime import datetime import logging -logging.basicConfig(level=logging.DEBUG) +logging.basicConfig(level=logging.ERROR) input_month = input('Input a month to analyse: ') input_day = int(input('Input a day of that month: '))