From e609982bef19560f6d1e5a906d09e20cc51503e8 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Thu, 20 Mar 2025 18:05:54 +0900 Subject: [PATCH] feat: apply createCallLogIdentifyMessage on error --- src/logged.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/logged.ts b/src/logged.ts index b7adb84..247d000 100644 --- a/src/logged.ts +++ b/src/logged.ts @@ -172,7 +172,10 @@ const callLogIdentifyMessageDictionary: Record = { middleware: 'MIDDLEWARE', } -function createCallLogIdentifyMessage(message: 'HIT' | 'RETURNED', type: BuildType, key?: string, route?: string) { +function createCallLogIdentifyMessage(message: 'HIT' | 'RETURNED' | 'ERROR', type: BuildType, key?: string, route?: string) { + if (message === 'ERROR') + return `ERROR WHILE ${callLogIdentifyMessageDictionary[type]} ${key} (${route}): `; + if (type === 'guard' || type === 'interceptor' || type === 'middleware' || type === 'route') return `${message} ${callLogIdentifyMessageDictionary[type]} ${key} (${route})` if (type === 'function') @@ -351,9 +354,7 @@ function overrideBuild, R>( } catch (e) { // Error Log if (logged.options.errorLogLevel !== 'skip') { - injectedLogger[logged.options.errorLogLevel]( - `WHILE ${route ? `HTTP ${route} (${key})` : key} ERROR ${e}` - ); + injectedLogger[logged.options.errorLogLevel](`${createCallLogIdentifyMessage('ERROR', type, key, route)} ${e}`); } throw e; }