From 7077b78c3393ad766e28c01ca5a7f8caba97ccd2 Mon Sep 17 00:00:00 2001 From: Kayla Man Date: Thu, 30 May 2024 16:00:29 +0800 Subject: [PATCH] add debug message --- client/ayon_core/pipeline/context_tools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/client/ayon_core/pipeline/context_tools.py b/client/ayon_core/pipeline/context_tools.py index 399946cb84..d92c43da04 100644 --- a/client/ayon_core/pipeline/context_tools.py +++ b/client/ayon_core/pipeline/context_tools.py @@ -587,6 +587,7 @@ def version_up_workfile(): host = registered_host() current_file = host.get_current_workfile() if not current_file: + log.debug("Current file not found.") return None filepath = version_up(current_file) host.save_workfile(filepath)