From fb595772f3dfcf8147e40ffa8db07bebe6d53f69 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 24 Sep 2020 09:38:12 +0200 Subject: [PATCH] :zap: Remove necessary console logs --- packages/core/src/ActiveWorkflows.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/core/src/ActiveWorkflows.ts b/packages/core/src/ActiveWorkflows.ts index 5576aeed3e..2e3b6d7c12 100644 --- a/packages/core/src/ActiveWorkflows.ts +++ b/packages/core/src/ActiveWorkflows.ts @@ -67,8 +67,6 @@ export class ActiveWorkflows { * @memberof ActiveWorkflows */ async add(id: string, workflow: Workflow, additionalData: IWorkflowExecuteAdditionalData, getTriggerFunctions: IGetExecuteTriggerFunctions, getPollFunctions: IGetExecutePollFunctions): Promise { - console.log('ADD ID (active): ' + id); - this.workflowData[id] = {}; const triggerNodes = workflow.getTriggerNodes(); @@ -204,8 +202,6 @@ export class ActiveWorkflows { * @memberof ActiveWorkflows */ async remove(id: string): Promise { - console.log('REMOVE ID (active): ' + id); - if (!this.isActive(id)) { // Workflow is currently not registered throw new Error(`The workflow with the id "${id}" is currently not active and can so not be removed`);