Skip to content

Commit

Permalink
Decrease the severity of the web access messages
Browse files Browse the repository at this point in the history
  • Loading branch information
TojikCZ committed Nov 21, 2023
1 parent ee1a1c3 commit 7dff46e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion prusa/link/web/lib/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit 7dff46e

Please sign in to comment.