diff --git a/cmd/cli/main.go b/cmd/cli/main.go index b1287ae..aa166ca 100644 --- a/cmd/cli/main.go +++ b/cmd/cli/main.go @@ -98,6 +98,7 @@ func initConsoleLogging() { // initLogging initializes global logging setup. func initLogging() { + zerolog.TimeFieldFormat = time.RFC3339 + ".000" initLoggingWithBackup(true) } @@ -136,7 +137,7 @@ func initLoggingWithBackup(doBackup bool) { } writers = append(writers, consoleWriter) multi := zerolog.MultiLevelWriter(writers...) - l := mainLog.Load().Output(multi).With().Timestamp().Logger() + l := mainLog.Load().Output(multi).With().Logger() mainLog.Store(&l) // TODO: find a better way. ctrld.ProxyLogger.Store(&l)