viper-app/internal/config/logger/config.go

13 lines
418 B
Go
Raw Normal View History

2023-02-03 16:18:31 +08:00
package logger
type Config struct {
Level string `mapstructure:"level"`
Path string `mapstructure:"path"`
MaxAge int `mapstructure:"max_age"`
MaxSize int `mapstructure:"max_size"`
MaxBackups int `mapstructure:"max_backups"`
Compress bool `mapstructure:"compress"`
LocalTime bool `mapstructure:"local_time"`
LogInConsole bool `mapstructure:"log_in_console"`
}