Files
Ratte/conf/log.go
2024-09-12 06:04:32 +09:00

20 lines
396 B
Go

package conf
type Log struct {
Level string `json:"Level,omitempty"`
Output string `json:"Output,omitempty"`
MaxBackups int `json:"MaxBackups,omitempty"`
MaxSize int `json:"MaxSize,omitempty"`
MaxAge int `json:"MaxAge,omitempty"`
}
func newLog() Log {
return Log{
Level: "info",
Output: "",
MaxBackups: 3,
MaxSize: 100,
MaxAge: 28,
}
}