Bind functions of Logging to this

This commit is contained in:
Fabian Stamm 2021-05-08 22:28:06 +02:00
parent eeed068ddd
commit 7d75f65dd3
3 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "logging",
"version": "3.0.4",
"version": "3.0.5",
"description": "",
"author": "Fabian Stamm <dev@fabianstamm.de>",
"contributors": [],

View File

@ -1,6 +1,6 @@
{
"name": "@hibas123/logging",
"version": "3.0.4",
"version": "3.0.5",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",

View File

@ -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) {