From c43c5eb06fd68ab59a89414fd73811cc920ed16b Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Tue, 27 Aug 2024 19:05:01 +0400 Subject: [PATCH] revert(util): remove conole.log from aggregation helper --- src/if-run/util/aggregation-helper.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/if-run/util/aggregation-helper.ts b/src/if-run/util/aggregation-helper.ts index 4629d9bc..e573720b 100644 --- a/src/if-run/util/aggregation-helper.ts +++ b/src/if-run/util/aggregation-helper.ts @@ -23,8 +23,6 @@ export const aggregateInputsIntoOne = ( const metricsKeys: string[] = metrics.map(metric => Object.keys(metric)[0]); const extendedMetrics = [...metricsKeys, ...AGGREGATION_ADDITIONAL_PARAMS]; - console.log(extendedMetrics); - return inputs.reduce((acc, input, index) => { for (const metric of extendedMetrics) { if (!(metric in input)) {