Skip to content

Commit

Permalink
chore(taiko-client): don't use color prefix in log's terminal handler (
Browse files Browse the repository at this point in the history
  • Loading branch information
mask-pp authored Aug 27, 2024
1 parent 6eb298f commit 1675cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/taiko-client/cmd/logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func InitLogger(c *cli.Context) {
glogger.Verbosity(slogVerbosity)
log.SetDefault(log.NewLogger(glogger))
} else {
glogger := log.NewGlogHandler(log.NewTerminalHandler(os.Stdout, true))
glogger := log.NewGlogHandler(log.NewTerminalHandler(os.Stdout, false))
glogger.Verbosity(slogVerbosity)
log.SetDefault(log.NewLogger(glogger))
}
Expand Down

0 comments on commit 1675cec

Please sign in to comment.