We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9654134 commit 3a338b7Copy full SHA for 3a338b7
1 file changed
src/utils/log.ts
@@ -46,7 +46,8 @@ export default class Log {
46
}
47
48
debug(...args: any[]) {
49
- if (this.logLevel <= 1) this.log(chalk.grey("DEBUG"), ...args);
+ // if (this.logLevel <= 1) this.log(chalk.grey("DEBUG"), ...args);
50
+ if (this.logLevel <= 1) this.log(...args);
51
52
53
trace(...args: any[]) {
0 commit comments