Skip to content

Commit 3a338b7

Browse files
committed
fix: remove debug log prefix
1 parent 9654134 commit 3a338b7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/utils/log.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ export default class Log {
4646
}
4747

4848
debug(...args: any[]) {
49-
if (this.logLevel <= 1) this.log(chalk.grey("DEBUG"), ...args);
49+
// if (this.logLevel <= 1) this.log(chalk.grey("DEBUG"), ...args);
50+
if (this.logLevel <= 1) this.log(...args);
5051
}
5152

5253
trace(...args: any[]) {

0 commit comments

Comments
 (0)