Skip to content

Commit f83109d

Browse files
committed
Also silencing the thumbnail 404 error logging (which currently is sent to Sentry for no real reason)
1 parent 6a93b2f commit f83109d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/classes/thumbnail.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def log_message(self, msg_format, *args):
127127

128128
def log_error(self, msg_format, *args):
129129
""" Log error from HTTPServer """
130-
log.error(msg_format % args)
130+
log.warning(msg_format % args)
131131

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

0 commit comments

Comments
 (0)