diff options
Diffstat (limited to 'internal/configuration/schema/log.go')
| -rw-r--r-- | internal/configuration/schema/log.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/configuration/schema/log.go b/internal/configuration/schema/log.go index 81e38c2a9..0678d860f 100644 --- a/internal/configuration/schema/log.go +++ b/internal/configuration/schema/log.go @@ -2,10 +2,10 @@ package schema // LogConfiguration represents the logging configuration. type LogConfiguration struct { - Level string `mapstructure:"level"` - Format string `mapstructure:"format"` - FilePath string `mapstructure:"file_path"` - KeepStdout bool `mapstructure:"keep_stdout"` + Level string `koanf:"level"` + Format string `koanf:"format"` + FilePath string `koanf:"file_path"` + KeepStdout bool `koanf:"keep_stdout"` } // DefaultLoggingConfiguration is the default logging configuration. |
