Merge pull request #1616 from BigRoy/enhancement/integrate_inputlinks_no_workfile_to_debug

Integrate Input Links: Do not log warning if no workfile is present
This commit is contained in:
Jakub Trllo 2025-12-18 10:27:29 +01:00 committed by GitHub
commit 301b603775
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -105,7 +105,7 @@ class IntegrateInputLinksAYON(pyblish.api.ContextPlugin):
created links by its type created links by its type
""" """
if workfile_instance is None: if workfile_instance is None:
self.log.warning("No workfile in this publish session.") self.log.debug("No workfile in this publish session.")
return return
workfile_version_id = workfile_instance.data["versionEntity"]["id"] workfile_version_id = workfile_instance.data["versionEntity"]["id"]