We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b8d0d commit 4ee6770Copy full SHA for 4ee6770
src/LoggerWithoutCallSite.ts
@@ -43,7 +43,9 @@ export class LoggerWithoutCallSite {
43
private _mySettings: ISettingsParam = {};
44
private _childLogger: Logger[] = [];
45
private _maskAnyRegExp: RegExp | undefined;
46
- protected _callSiteWrapper: (frame: any) => any = (x) => x;
+ protected _callSiteWrapper: (callSite: NodeJS.CallSite) => NodeJS.CallSite = (
47
+ callSite: NodeJS.CallSite
48
+ ) => callSite;
49
50
/**
51
* @param settings - Configuration of the logger instance (all settings are optional with sane defaults)
0 commit comments