feat: apply createCallLogIdentifyMessage on error
This commit is contained in:
parent
8f8d56ada4
commit
e609982bef
@ -172,7 +172,10 @@ const callLogIdentifyMessageDictionary: Record<BuildType, string> = {
|
|||||||
middleware: 'MIDDLEWARE',
|
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')
|
if (type === 'guard' || type === 'interceptor' || type === 'middleware' || type === 'route')
|
||||||
return `${message} ${callLogIdentifyMessageDictionary[type]} ${key} (${route})`
|
return `${message} ${callLogIdentifyMessageDictionary[type]} ${key} (${route})`
|
||||||
if (type === 'function')
|
if (type === 'function')
|
||||||
@ -351,9 +354,7 @@ function overrideBuild<F extends Array<any>, R>(
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
// Error Log
|
// Error Log
|
||||||
if (logged.options.errorLogLevel !== 'skip') {
|
if (logged.options.errorLogLevel !== 'skip') {
|
||||||
injectedLogger[logged.options.errorLogLevel](
|
injectedLogger[logged.options.errorLogLevel](`${createCallLogIdentifyMessage('ERROR', type, key, route)} ${e}`);
|
||||||
`WHILE ${route ? `HTTP ${route} (${key})` : key} ERROR ${e}`
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user