Fix logging levels
This commit is contained in:
parent
a94d683293
commit
d605ee07f2
|
@ -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,13 +34,11 @@ 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export const emp = chalk.green;
|
||||
export const wrn = chalk.yellow;
|
||||
|
|
Loading…
Reference in a new issue