Reduce logging verbosity in scrape.py by setting level to INFO

This commit is contained in:
2025-11-04 22:47:11 +01:00
parent 7f102a30ed
commit 6acf030e74

View File

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