We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7104848 + fa964f8 commit d21279fCopy full SHA for d21279f
pkg/logging/logger.go
@@ -59,7 +59,10 @@ type loggingService struct {
59
60
// NewRootLogger creates a new zerolog logger with default settings.
61
func NewRootLogger() zerolog.Logger {
62
- return zerolog.New(zerolog.ConsoleWriter{Out: os.Stdout}).With().Timestamp().Logger()
+ return zerolog.New(zerolog.ConsoleWriter{
63
+ Out: os.Stdout,
64
+ NoColor: true,
65
+ }).With().Timestamp().Logger()
66
}
67
68
// NewService creates a new Service.
0 commit comments