From f4c9fc6897795096bd6fb61cd397b374212a98ee Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Wed, 5 Oct 2022 09:53:47 +0100 Subject: [PATCH] remove logs --- packages/server/src/threads/automation.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/server/src/threads/automation.ts b/packages/server/src/threads/automation.ts index 43aecd0e62..6ef39dc1f5 100644 --- a/packages/server/src/threads/automation.ts +++ b/packages/server/src/threads/automation.ts @@ -317,7 +317,7 @@ class Orchestrator { } // The "Loop" binding in the front end is "fake", so replace it here so the context can understand it - // Pretty hacky because we need to account for the row objec + // Pretty hacky because we need to account for the row object for (let [key, value] of Object.entries(originalStepInput)) { if (typeof value === "object") { for (let [innerKey, innerValue] of Object.entries( @@ -461,8 +461,6 @@ class Orchestrator { }) this._context.steps[loopStepNumber] = tempOutput - console.log(loopStepNumber) - console.log(this._context) loopSteps = undefined wasLoopStep = true }