mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
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:
parent
4fd344dc5a
commit
d01afd073a
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue