mirror of https://github.com/authelia/authelia.git
28 lines
851 B
Go
28 lines
851 B
Go
package validator
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
"github.com/authelia/authelia/v4/internal/utils"
|
|
)
|
|
|
|
// ValidateLog validates the logging configuration.
|
|
func ValidateLog(config *schema.Configuration, validator *schema.StructValidator) {
|
|
if config.Log.Level == "" {
|
|
config.Log.Level = schema.DefaultLoggingConfiguration.Level
|
|
}
|
|
|
|
if config.Log.Format == "" {
|
|
config.Log.Format = schema.DefaultLoggingConfiguration.Format
|
|
}
|
|
|
|
if !utils.IsStringInSlice(config.Log.Format, validLogFormats) {
|
|
validator.Push(fmt.Errorf(errFmtLoggingInvalid, "format", utils.StringJoinOr(validLogFormats), config.Log.Format))
|
|
}
|
|
|
|
if !utils.IsStringInSlice(config.Log.Level, validLogLevels) {
|
|
validator.Push(fmt.Errorf(errFmtLoggingInvalid, "level", utils.StringJoinOr(validLogLevels), config.Log.Level))
|
|
}
|
|
}
|