From 91b58ef8030f0972e238dacbb4200fdcc10f1ff9 Mon Sep 17 00:00:00 2001 From: kirillgroshkov Date: Fri, 19 Jul 2024 12:37:23 +0200 Subject: [PATCH] fix: weird circular dependency --- src/log/commonLogger.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/log/commonLogger.ts b/src/log/commonLogger.ts index 96bae576..cde4eab2 100644 --- a/src/log/commonLogger.ts +++ b/src/log/commonLogger.ts @@ -1,4 +1,5 @@ -import { _noop } from '../index' +// copy-pasted to avoid weird circular dependency +const _noop = (..._args: any[]): undefined => undefined /** * These levels follow console.* naming,