logger removed bugfix

This commit is contained in:
Nikita Aksenov 2025-03-31 20:21:16 +03:00
parent 55b3f830bb
commit 955f0decbb
No known key found for this signature in database
GPG key ID: 9DC1431B2123B2E8

View file

@ -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"]