You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
667 B

package logger
type Config struct {
Level string // Level 最低日志等级,DEBUG<INFO<WARN<ERROR<FATAL
FilePath string // FilePath 日志文件位置
Separate bool // Separate 日志是否分隔
MaxSize int // MaxSize 进行切割之前,日志文件的最大大小(MB为单位),默认为100MB
MaxAge int // MaxAge 是根据文件名中编码的时间戳保留旧日志文件的最大天数
MaxBackups int // MaxBackups 是要保留的旧日志文件的最大数量。默认是保留所有旧的日志文件(尽管 MaxAge 可能仍会导致它们被删除。)
Compress bool // Compress 是否压缩/归档旧文件
}