2021-06-01 04:09:50 +00:00
|
|
|
package schema
|
|
|
|
|
2021-06-08 13:15:43 +00:00
|
|
|
// LogConfiguration represents the logging configuration.
|
|
|
|
type LogConfiguration struct {
|
2021-08-03 09:55:21 +00:00
|
|
|
Level string `koanf:"level"`
|
|
|
|
Format string `koanf:"format"`
|
|
|
|
FilePath string `koanf:"file_path"`
|
|
|
|
KeepStdout bool `koanf:"keep_stdout"`
|
2021-06-01 04:09:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultLoggingConfiguration is the default logging configuration.
|
2021-06-08 13:15:43 +00:00
|
|
|
var DefaultLoggingConfiguration = LogConfiguration{
|
2021-06-01 04:09:50 +00:00
|
|
|
Level: "info",
|
|
|
|
Format: "text",
|
|
|
|
}
|