log info over what we got from backend

This commit is contained in:
yashsinghcodes
2025-10-31 19:58:38 +05:30
parent a7cd4bde29
commit 392a05100e
+5
View File
@@ -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
}