feat: update createCallLogIdentifyMessage

This commit is contained in:
Shinwoo PARK 2025-03-20 17:55:58 +09:00
parent 2b3c0a4195
commit 6ddab9d2be

View File

@ -165,25 +165,22 @@ class LoggedMetadata {
type BuildType = 'route' | 'function' | 'guard' | 'interceptor' | 'middleware'; type BuildType = 'route' | 'function' | 'guard' | 'interceptor' | 'middleware';
const callLogIdentifyMessageDictionary: Record<BuildType, string> = { const callLogIdentifyMessageDictionary: Record<BuildType, string> = {
route: 'HIT HTTP', route: 'ENDPOINT',
function: 'CALL', function: 'FUNCTION',
guard: 'HIT GUARD', guard: 'GUARD',
interceptor: 'HIT INTERCEPTOR', interceptor: 'INTERCEPTOR',
middleware: 'HIT MIDDLEWARE', middleware: 'MIDDLEWARE',
} }
function createCallLogIdentifyMessage(type: 'route', key: string, route: string) function createCallLogIdentifyMessage(message: 'HIT' | 'RETURNED', type: 'guard' | 'interceptor' | 'middleware' | 'route', key: string, route: string)
function createCallLogIdentifyMessage(type: 'guard' | 'interceptor' | 'middleware', route: string) function createCallLogIdentifyMessage(message: 'HIT' | 'RETURNED', type: 'function', key: string)
function createCallLogIdentifyMessage(type: 'function', key: string) function createCallLogIdentifyMessage(message: 'HIT' | 'RETURNED', type: BuildType, key?: string, route?: string) {
function createCallLogIdentifyMessage(type: BuildType, key?: string, route?: string) { if (type === 'guard' || type === 'interceptor' || type === 'middleware' || type === 'route')
if (type === 'route') return `${message} ${callLogIdentifyMessageDictionary[type]} ${key} (${route})`
return `${callLogIdentifyMessageDictionary[type]} ${route} (${key})`
if (type === 'guard' || type === 'interceptor' || type === 'middleware')
return `${callLogIdentifyMessageDictionary[type]} ${route}`
if (type === 'function') if (type === 'function')
return `${callLogIdentifyMessageDictionary[type]} ${key}`; return `${message} ${callLogIdentifyMessageDictionary[type]} ${key}`;
return callLogIdentifyMessageDictionary[type]; return `${message} ${callLogIdentifyMessageDictionary[type]}`;
} }
const REQUEST_LOG_ID = '__nestlogged_request_log_id__'; const REQUEST_LOG_ID = '__nestlogged_request_log_id__';
@ -275,11 +272,9 @@ function overrideBuild<F extends Array<any>, R>(
// Start Log // Start Log
if (logged.options.callLogLevel !== 'skip') { if (logged.options.callLogLevel !== 'skip') {
const callLogIdentifyMessage = const callLogIdentifyMessage =
type === 'middleware' || type === 'guard' || type === 'interceptor' type === 'middleware' || type === 'guard' || type === 'interceptor' || type === 'route'
? createCallLogIdentifyMessage(type, route) ? createCallLogIdentifyMessage('HIT', type, key, route)
: type === 'route' : createCallLogIdentifyMessage('HIT', type, key);
? createCallLogIdentifyMessage(type, key, route)
: createCallLogIdentifyMessage(type, key);
injectedLogger[logged.options.callLogLevel]( injectedLogger[logged.options.callLogLevel](
`${callLogIdentifyMessage} ${metadatas.loggedParams && metadatas.loggedParams.length > 0 `${callLogIdentifyMessage} ${metadatas.loggedParams && metadatas.loggedParams.length > 0
? "WITH " + ? "WITH " +