From 392a05100ec7a2b2c2569d1f141a3cb07d0b5e9c Mon Sep 17 00:00:00 2001 From: yashsinghcodes Date: Fri, 31 Oct 2025 19:58:38 +0530 Subject: [PATCH] log info over what we got from backend --- functions/onprem/worker/worker.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/functions/onprem/worker/worker.go b/functions/onprem/worker/worker.go index 5a858888..11c7b524 100644 --- a/functions/onprem/worker/worker.go +++ b/functions/onprem/worker/worker.go @@ -2555,6 +2555,11 @@ func getWorkerBackendExecution(auth string, executionId string) (*shuffle.Workfl return workflowExecution, err } + if debug { + log.Printf("[INFO] Here is the result we got back from backend: %s", workflowExecution.Results) + } + + setWorkflowExecution(context.Background(), *workflowExecution, false) return workflowExecution, nil }