From d52b024716206277536f6bf8baedb28f340d9705 Mon Sep 17 00:00:00 2001 From: Frikky Date: Tue, 21 May 2024 12:00:22 +0200 Subject: [PATCH] Added more debug info for ai build --- backend/app_sdk/app_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app_sdk/app_base.py b/backend/app_sdk/app_base.py index 995ac7b6..15338d89 100755 --- a/backend/app_sdk/app_base.py +++ b/backend/app_sdk/app_base.py @@ -3687,7 +3687,7 @@ class AppBase: self.logger.info(f"[ERROR] Failed parsing timeout to int: {e}") #timeout = 30 - self.logger.info("[DEBUG] Running function '%s' with timeout %d" % (action["name"], timeout)) + self.logger.info("[DEBUG][%s] Running function '%s' with timeout %d" % (self.current_execution_id, action["name"], timeout)) try: executor = concurrent.futures.ThreadPoolExecutor()