From 4ecab1cd432b9befbcb828446e43347f2abba42f Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Thu, 7 Mar 2024 00:50:17 +0100 Subject: [PATCH] Print the ZScript being run for debugging into the console --- client/ayon_core/hosts/zbrush/api/lib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/client/ayon_core/hosts/zbrush/api/lib.py b/client/ayon_core/hosts/zbrush/api/lib.py index 202bca23e2..c89fc9e4e7 100644 --- a/client/ayon_core/hosts/zbrush/api/lib.py +++ b/client/ayon_core/hosts/zbrush/api/lib.py @@ -40,6 +40,7 @@ def execute_zscript(zscript, communicator=None): """ if not communicator: communicator = CommunicationWrapper.communicator + print(f"Executing ZScript: {zscript}") return communicator.execute_zscript(zscript)