Skip to content
Snippets Groups Projects
Unverified Commit b1f4e6e4 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

fix a logging error in thumbnailer (#8435)

Introduced in #8236
parent 50e5174e
No related branches found
No related tags found
No related merge requests found
Fix a longstanding bug where files that could not be thumbnailed would result in an Internal Server Error.
...@@ -637,7 +637,7 @@ class MediaRepository: ...@@ -637,7 +637,7 @@ class MediaRepository:
thumbnailer = Thumbnailer(input_path) thumbnailer = Thumbnailer(input_path)
except ThumbnailError as e: except ThumbnailError as e:
logger.warning( logger.warning(
"Unable to generate thumbnails for remote media %s from %s using a method of %s and type of %s: %s", "Unable to generate thumbnails for remote media %s from %s of type %s: %s",
media_id, media_id,
server_name, server_name,
media_type, media_type,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment