From 2cfef9b7e9d13f3482e7523895c58d76c40e55fb Mon Sep 17 00:00:00 2001 From: haru0017 Date: Mon, 13 Jul 2026 16:31:35 +0900 Subject: [PATCH] fix: use correct console methods for debug and info levels --- packages/logger/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/logger/src/index.ts b/packages/logger/src/index.ts index 0ef2c69..db1d4ba 100644 --- a/packages/logger/src/index.ts +++ b/packages/logger/src/index.ts @@ -14,11 +14,11 @@ export interface Logger { const createConsoleLogger = (): Logger => ({ debug: (message: string, ...args: unknown[]): void => { - console.log(`[DEBUG] ${message}`, ...args); + console.debug(`[DEBUG] ${message}`, ...args); }, info: (message: string, ...args: unknown[]): void => { - console.log(`[INFO] ${message}`, ...args); + console.info(`[INFO] ${message}`, ...args); }, warn: (message: string, ...args: unknown[]): void => {