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