Skip to content

Commit

Permalink
Also silencing the thumbnail 404 error logging (which currently is se…
Browse files Browse the repository at this point in the history
…nt to Sentry for no real reason)
  • Loading branch information
jonoomph committed Aug 27, 2021
1 parent 6a93b2f commit f83109d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/thumbnail.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def log_message(self, msg_format, *args):

def log_error(self, msg_format, *args):
""" Log error from HTTPServer """
log.error(msg_format % args)
log.warning(msg_format % args)

def do_GET(self):
""" Process each GET request and return a value (image or file path)"""
Expand Down

0 comments on commit f83109d

Please sign in to comment.