Skip to content

Commit

Permalink
fix, avoid showing the time when bit writes to console during executi…
Browse files Browse the repository at this point in the history
…on (#8935)
  • Loading branch information
davidfirst authored Jun 4, 2024
1 parent 125fc09 commit 46058a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logger/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class BitLogger implements IBitLogger {
this.trace('a wrong color provided to logger.console method');
}
}
pinoLoggerConsole[level](messageStr);
console.log(messageStr); // eslint-disable-line no-console
}

/**
Expand Down

0 comments on commit 46058a9

Please sign in to comment.