From 6acf030e7434c63738009888c79cfe38b07b8075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Tue, 4 Nov 2025 22:47:11 +0100 Subject: [PATCH] Reduce logging verbosity in scrape.py by setting level to INFO --- scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrape.py b/scrape.py index a6cc1fa..155bd45 100644 --- a/scrape.py +++ b/scrape.py @@ -26,7 +26,7 @@ from markupsafe import escape if TYPE_CHECKING: from collections.abc import Coroutine -logging.basicConfig(level=logging.DEBUG, format="%(message)s") +logging.basicConfig(level=logging.INFO, format="%(message)s") logger: logging.Logger = logging.getLogger("wutheringwaves")