metricator/internal/logger/config.go

8 lines
184 B
Go
Raw Normal View History

2020-12-23 16:28:57 +05:00
package logger
// Config represents logging configuration.
type Config struct {
2020-12-23 20:55:50 +05:00
// Debug is a flag that indicates that we should print out debug output.
2020-12-23 16:28:57 +05:00
Debug bool `yaml:"debug"`
}