From 7dff46e2f8fd01a0b77d6057871f2262e36e4ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Joz=C3=ADfek?= Date: Tue, 21 Nov 2023 10:53:28 +0100 Subject: [PATCH] Decrease the severity of the web access messages --- ChangeLog | 1 + prusa/link/web/lib/classes.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 76aefd8e..68212d19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ * Attempt to turn the RPi wifi power management off in the images * Stop showing the tune menu after connecting to the printer * Use the 2023-10-10 Raspberry Pi OS base image for the image builder + * Decrease the severity of web server access log messages 0.7.1rc1 (2023-08-10) * Fixed HTTP response status on HEAD request for non-existing files diff --git a/prusa/link/web/lib/classes.py b/prusa/link/web/lib/classes.py index 9eed17c3..05deb617 100644 --- a/prusa/link/web/lib/classes.py +++ b/prusa/link/web/lib/classes.py @@ -42,7 +42,7 @@ class RequestHandler(WSGIRequestHandler): # pylint: disable=redefined-builtin def log_message(self, format, *args): """Log a message, which is typical content of access.log""" - log.info("%s - %s", self.address_string(), format % args) + log.debug("%s - %s", self.address_string(), format % args) def log_error(self, *args): """Log an error."""