mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
improve log texts
This commit is contained in:
parent
ab9d8e266a
commit
dc883fe0a4
1 changed files with 3 additions and 1 deletions
|
|
@ -25,13 +25,15 @@ class ExtractScanlineExr(pyblish.api.InstancePlugin):
|
|||
|
||||
for repre in representations:
|
||||
self.log.info(
|
||||
"Processnig representation {}".format(repre.get("name")))
|
||||
"Processing representation {}".format(repre.get("name")))
|
||||
tags = repre.get("tags", [])
|
||||
if "toScanline" not in tags:
|
||||
self.log.info("- missing toScanline tag")
|
||||
continue
|
||||
|
||||
# run only on exrs
|
||||
if repre.get("ext") != "exr":
|
||||
self.log.info("- not EXR files")
|
||||
continue
|
||||
|
||||
if not isinstance(repre['files'], (list, tuple)):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue