From 0eb229a8876c5637a33976c0227f018e850bae70 Mon Sep 17 00:00:00 2001 From: John Guo Date: Tue, 11 Feb 2025 15:59:27 +0800 Subject: [PATCH] feat(os/glog): add default time format `2006-01-02T15:04:05.000Z07:00` (#4134) --- os/glog/glog_logger.go | 1 + os/glog/glog_logger_config.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/os/glog/glog_logger.go b/os/glog/glog_logger.go index cf3d03e29..942986dae 100644 --- a/os/glog/glog_logger.go +++ b/os/glog/glog_logger.go @@ -40,6 +40,7 @@ type Logger struct { const ( defaultFileFormat = `{Y-m-d}.log` + defaultTimeFormat = "2006-01-02T15:04:05.000Z07:00" defaultFileFlags = os.O_CREATE | os.O_WRONLY | os.O_APPEND defaultFilePerm = os.FileMode(0666) defaultFileExpire = time.Minute diff --git a/os/glog/glog_logger_config.go b/os/glog/glog_logger_config.go index 916665e2d..fcd83d162 100644 --- a/os/glog/glog_logger_config.go +++ b/os/glog/glog_logger_config.go @@ -59,7 +59,7 @@ func DefaultConfig() Config { c := Config{ File: defaultFileFormat, Flags: F_TIME_STD, - TimeFormat: "", + TimeFormat: defaultTimeFormat, Level: LEVEL_ALL, CtxKeys: []interface{}{}, StStatus: 1,