Fix logging levels

This commit is contained in:
powermaker450 2024-08-21 14:32:43 -04:00
parent a94d683293
commit d605ee07f2

View file

@ -18,7 +18,7 @@ export class Logger {
}
public log(text?: any, args?: any): void {
if (this.isMainFunction || this._logLevel === 0) {
if (this.isMainFunction || this._logLevel > 2) {
args
? console.log(this._main + text, args)
: console.log(this._main + text);
@ -26,7 +26,7 @@ export class Logger {
}
public warn(text?: any, args?: any): void {
if (this._logLevel === 1) {
if (this._logLevel > 1) {
args
? console.warn(this._main + this._wrn + text, args)
: console.warn(this._main + this._wrn + text);
@ -34,11 +34,9 @@ export class Logger {
}
public error(text?: any, args?: any): void {
if (this._logLevel === 2) {
args
? console.error(this._main + this._err + text, args)
: console.error(this._main + this._err + text);
}
args
? console.error(this._main + this._err + text, args)
: console.error(this._main + this._err + text);
}
}