日志配置增加jsonTag
This commit is contained in:
parent
8445564446
commit
1b902ff2af
@ -43,13 +43,13 @@ const (
|
|||||||
//
|
//
|
||||||
// Date : 3:08 下午 2021/1/2
|
// Date : 3:08 下午 2021/1/2
|
||||||
type RotateLogConfig struct {
|
type RotateLogConfig struct {
|
||||||
TimeIntervalType TimeIntervalType // 日志切割的时间间隔类型 0 - 小时 1 - 天 2 - 月 3 - 年
|
TimeIntervalType TimeIntervalType `json:"time_interval_type" yml:"time_interval_type"` // 日志切割的时间间隔类型 0 - 小时 1 - 天 2 - 月 3 - 年
|
||||||
TimeInterval time.Duration // 日志切割的时间间隔
|
TimeInterval time.Duration `json:"time_interval" yml:"time_interval"` // 日志切割的时间间隔
|
||||||
LogPath string // 存储日志的路径
|
LogPath string `json:"log_path" yml:"log_path"` // 存储日志的路径
|
||||||
LogFileName string // 日志文件名
|
LogFileName string `json:"log_file_name" yml:"log_file_name"` // 日志文件名
|
||||||
DivisionChar string // 日志文件拼时间分隔符
|
DivisionChar string `json:"division_char" yml:"division_char"` // 日志文件拼时间分隔符
|
||||||
FullLogFormat string // 完整的日志格式
|
FullLogFormat string `json:"full_log_format" yml:"full_log_format"` // 完整的日志格式
|
||||||
MaxAge time.Duration // 日志最长保存时间
|
MaxAge time.Duration `json:"max_age" yml:"max_age"` // 日志最长保存时间
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetRotateLogConfigOption 设置日志切割的选项
|
// SetRotateLogConfigOption 设置日志切割的选项
|
||||||
|
Loading…
Reference in New Issue
Block a user