fix(config): fix typo NewLoggingLevel to NewLoggingConfig

This commit is contained in:
Alexis Couvreur
2022-10-31 13:27:20 +00:00
parent cc01caa5d4
commit 1f7f2f8485

View File

@@ -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(),
}