temp 2
This commit is contained in:
parent
00fd3e33c4
commit
9f855b9939
@ -185,6 +185,8 @@ function createCallLogIdentifyMessage(type: BuildType, key?: string, route?: str
|
||||
return callLogIdentifyMessageDictionary[type];
|
||||
}
|
||||
|
||||
const REQUEST_LOG_ID = '__nestlogged_request_log_id__';
|
||||
|
||||
function overrideBuild<F extends Array<any>, R>(
|
||||
type: 'route',
|
||||
originalFunction: (...args: F) => R,
|
||||
@ -235,8 +237,12 @@ function overrideBuild<F extends Array<any>, R>(
|
||||
if (ctx.getType() !== 'http') {
|
||||
injectedLogger.error('Cannot inject logger: Request type is not http');
|
||||
} else {
|
||||
const req = ctx.switchToHttp().getRequest();
|
||||
// TODO HERE
|
||||
let req = ctx.switchToHttp().getRequest();
|
||||
if (req[REQUEST_LOG_ID] === undefined) {
|
||||
req[REQUEST_LOG_ID] = ScopedLogger.createScopeId();
|
||||
} else {
|
||||
// TODO: INHERIT SCOPE ID
|
||||
}
|
||||
}
|
||||
} else if (type === 'middleware') {
|
||||
// args[0] == Request
|
||||
|
@ -38,4 +38,7 @@ export class ScopedLogger extends Logger {
|
||||
logger, [scope]
|
||||
)
|
||||
};
|
||||
static createScopeId(): string {
|
||||
return createId();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user