homebox/backend/internal/config/conf_logger.go

12 lines
176 B
Go
Raw Normal View History

2022-08-29 18:30:36 -08:00
package config
2022-09-14 09:35:23 -08:00
const (
LogFormatJSON = "json"
LogFormatText = "text"
)
2022-08-29 18:30:36 -08:00
type LoggerConf struct {
2022-09-14 09:35:23 -08:00
Level string `conf:"default:info"`
Format string `conf:"default:text"`
2022-08-29 18:30:36 -08:00
}