From 8d48f5f1794d165c67fe7e136e4f1c95c4f91ef3 Mon Sep 17 00:00:00 2001 From: Joe Andrews Date: Thu, 10 Oct 2024 12:20:19 +0100 Subject: [PATCH] fix types --- yarn-project/foundation/src/log/logger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/foundation/src/log/logger.ts b/yarn-project/foundation/src/log/logger.ts index 542b88a07d75..d008774f182e 100644 --- a/yarn-project/foundation/src/log/logger.ts +++ b/yarn-project/foundation/src/log/logger.ts @@ -43,7 +43,7 @@ export type DebugLogger = Logger; */ -export function createDebugLogger(name: string, taggedLogData?: JSON ): DebugLogger { +export function createDebugLogger(name: string, taggedLogData?: LogData ): DebugLogger { const debugLogger = debug(name); if (currentLevel === 'debug') debugLogger.enabled = true;