2026-08-28 15:06:01 +08:00
|
|
|
package logx
|
|
|
|
|
|
|
|
|
|
// LogConf 按天日志配置
|
|
|
|
|
type LogConf struct {
|
|
|
|
|
Level string `json:",default=INFO"`
|
|
|
|
|
Format string `json:",default=text"`
|
2026-08-29 15:30:25 +08:00
|
|
|
TimeFormat string `json:",optional"`
|
2026-08-28 15:06:01 +08:00
|
|
|
Filename string `json:",default=bj_power_mes.log"`
|
|
|
|
|
Daily bool `json:",default=true"`
|
|
|
|
|
MaxSize int `json:",default=100"`
|
|
|
|
|
MaxBackups int `json:",default=10"`
|
|
|
|
|
MaxAge int `json:",default=30"`
|
|
|
|
|
Compress bool `json:",default=true"`
|
|
|
|
|
Console bool `json:",default=true"`
|
|
|
|
|
AddSource bool `json:",default=false"`
|
|
|
|
|
}
|