diff --git a/config/logging.go b/config/logging.go index 1fbe7c9..544c30d 100644 --- a/config/logging.go +++ b/config/logging.go @@ -6,7 +6,7 @@ type Logging struct { Level string `mapstructure:"LEVEL" yaml:"level" default:"info"` } -func NewLoggingLevel() Logging { +func NewLoggingConfig() Logging { return Logging{ Level: log.InfoLevel.String(), }