Skip to content

Commit 54a9ca0

Browse files
author
Andrea Cosentino
committed
fix: log level
1 parent 49ede07 commit 54a9ca0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/Logger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ export class Logger implements ILogger {
4242
}
4343

4444
info(...msg: unknown[]): void {
45-
["debug", "info", "warn"].includes(this.logLevel) && this.log(msg);
45+
["debug", "info"].includes(this.logLevel) && this.log(msg);
4646
}
4747
success(...msg: unknown[]): void {
48-
["debug", "info", "warn"].includes(this.logLevel) && this.log(msg, this.colors.green);
48+
["debug", "info"].includes(this.logLevel) && this.log(msg, this.colors.green);
4949
}
5050
warn(...msg: unknown[]): void {
5151
["debug", "info", "warn"].includes(this.logLevel) && this.log(msg, this.colors.yellow);

0 commit comments

Comments
 (0)