From c2fe629267f3e7d4f9d31c6365e3954121334f1e Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 21 Aug 2024 05:30:21 +0530 Subject: [PATCH] fix: remove log of workflow from preprocessor --- maxun-core/src/preprocessor.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/maxun-core/src/preprocessor.ts b/maxun-core/src/preprocessor.ts index 89fbb0c4..7c31004e 100644 --- a/maxun-core/src/preprocessor.ts +++ b/maxun-core/src/preprocessor.ts @@ -9,9 +9,6 @@ import { operators } from './types/logic'; */ export default class Preprocessor { static validateWorkflow(workflow: WorkflowFile): any { - - console.log(`Workflow from preprocessor: ${workflow}`) - const regex = Joi.object({ $regex: Joi.string().required(), });