Bind functions of Logging to this
This commit is contained in:
12
src/base.ts
12
src/base.ts
@ -74,6 +74,12 @@ export abstract class LoggingInterface implements ILoggingInterface {
|
||||
|
||||
constructor(names: string[]) {
|
||||
this.#names = names;
|
||||
|
||||
for (const key in this) {
|
||||
if (typeof this[key] === "function") {
|
||||
this[key] = ((this[key] as never) as Function).bind(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
debug(...message: any[]) {
|
||||
@ -193,12 +199,6 @@ export class LoggingBase extends LoggingInterface {
|
||||
if (options.console) {
|
||||
this.addAdapter(consoleAdapter);
|
||||
}
|
||||
|
||||
for (const key in this) {
|
||||
if (typeof this[key] === "function") {
|
||||
this[key] = ((this[key] as never) as Function).bind(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async addAdapter(adapter: Adapter) {
|
||||
|
Reference in New Issue
Block a user