Simplifies debug log message

Removes unnecessary f-string formatting in a debug log message
within the thumbnail extraction process. This simplifies the
log output and improves readability.
This commit is contained in:
Jakub Jezek 2025-05-13 16:06:53 +02:00
parent 4fd344dc5a
commit d01afd073a
No known key found for this signature in database
GPG key ID: 06DBD609ADF27FD9

View file

@ -580,7 +580,7 @@ class ExtractThumbnail(pyblish.api.InstancePlugin):
os.path.exists(output_thumb_file_path)
and os.path.getsize(output_thumb_file_path) > 0
):
self.log.debug(f"Fallback thumbnail created")
self.log.debug("Fallback thumbnail created")
return output_thumb_file_path
return None
except RuntimeError as error: