From dc883fe0a41ef4157340047a84cdbd30e19d4888 Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Tue, 8 Sep 2020 19:02:45 +0200 Subject: [PATCH] improve log texts --- pype/plugins/global/publish/extract_scanline_exr.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pype/plugins/global/publish/extract_scanline_exr.py b/pype/plugins/global/publish/extract_scanline_exr.py index 4a34038f7e..2f68a2af0d 100644 --- a/pype/plugins/global/publish/extract_scanline_exr.py +++ b/pype/plugins/global/publish/extract_scanline_exr.py @@ -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)):