From fe9ed4c09e6cd04378a1b3f2887bf5a0e011c7a0 Mon Sep 17 00:00:00 2001 From: "petr.kalis" Date: Thu, 18 Jun 2020 12:16:14 +0200 Subject: [PATCH] Fix - unwanted change of existing logging --- pype/plugins/global/publish/integrate_new.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/plugins/global/publish/integrate_new.py b/pype/plugins/global/publish/integrate_new.py index bb58479d64..c5ef2c3530 100644 --- a/pype/plugins/global/publish/integrate_new.py +++ b/pype/plugins/global/publish/integrate_new.py @@ -600,8 +600,8 @@ class IntegrateAssetNew(pyblish.api.InstancePlugin): except OSError as e: if e.errno == errno.EEXIST: pass - else:# clean destination - self.log.error("An unexpected error occurred.") + else: + self.log.critical("An unexpected error occurred.") raise # copy file with speedcopy and check if size of files are simetrical