From 955f0decbb629e71a1848baea5e2882a390e583e Mon Sep 17 00:00:00 2001 From: Nikita Aksenov Date: Mon, 31 Mar 2025 20:21:16 +0300 Subject: [PATCH] logger removed bugfix --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 3969541..460e3cc 100644 --- a/main.py +++ b/main.py @@ -91,7 +91,7 @@ async def get_message_text() -> str: try: response = requests.get(DEADLINES_URL).json() except Exception as e: - logger.error(f"Failed to fetch deadlines: {e}") + print(f"Failed to fetch deadlines: {e}") return "" deadlines = response["deadlines"]