mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-03 09:24:57 +01:00
Debug log when exclude family was found for the instance
This commit is contained in:
parent
821293d3b8
commit
c3e0162c43
1 changed files with 4 additions and 1 deletions
|
|
@ -115,7 +115,10 @@ class IntegrateAssetNew(pyblish.api.InstancePlugin):
|
|||
|
||||
# Exclude instances that also contain families from exclude families
|
||||
families = set(self._get_instance_families(instance))
|
||||
if families & set(self.exclude_families):
|
||||
exclude = families & set(self.exclude_families)
|
||||
if exclude:
|
||||
self.log.debug("Instance not integrated due to exclude "
|
||||
"families found: {}".format(", ".join(exclude)))
|
||||
return
|
||||
|
||||
file_transactions = FileTransaction(log=self.log)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue