cmd/cli: ensure log time field is formated with ms

This commit is contained in:
Cuong Manh Le
2023-12-06 14:52:20 +07:00
committed by Cuong Manh Le
parent 0bb8703f78
commit 874ff01ab8

View File

@@ -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)