1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

feat(os/glog): add default time format 2006-01-02T15:04:05.000Z07:00 (#4134)

This commit is contained in:
John Guo 2025-02-11 15:59:27 +08:00 committed by GitHub
parent e12768207e
commit 0eb229a887
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -40,6 +40,7 @@ type Logger struct {
const ( const (
defaultFileFormat = `{Y-m-d}.log` defaultFileFormat = `{Y-m-d}.log`
defaultTimeFormat = "2006-01-02T15:04:05.000Z07:00"
defaultFileFlags = os.O_CREATE | os.O_WRONLY | os.O_APPEND defaultFileFlags = os.O_CREATE | os.O_WRONLY | os.O_APPEND
defaultFilePerm = os.FileMode(0666) defaultFilePerm = os.FileMode(0666)
defaultFileExpire = time.Minute defaultFileExpire = time.Minute

View File

@ -59,7 +59,7 @@ func DefaultConfig() Config {
c := Config{ c := Config{
File: defaultFileFormat, File: defaultFileFormat,
Flags: F_TIME_STD, Flags: F_TIME_STD,
TimeFormat: "", TimeFormat: defaultTimeFormat,
Level: LEVEL_ALL, Level: LEVEL_ALL,
CtxKeys: []interface{}{}, CtxKeys: []interface{}{},
StStatus: 1, StStatus: 1,