Add warn if configuration could not be found

This commit is contained in:
Kristoffer Dalby 2022-06-12 13:32:16 +00:00
parent c95bce4aea
commit 76195bb3ac

View File

@ -163,9 +163,13 @@ func LoadConfig(path string, isFile bool) error {
viper.SetDefault("ephemeral_node_inactivity_timeout", "120s")
if err := viper.ReadInConfig(); err != nil {
log.Warn().Err(err).Msg("Failed to read configuration from disk")
return fmt.Errorf("fatal error reading config file: %w", err)
}
log.Debug().Str("path", viper.ConfigFileUsed()).Msg("Read configuration from disk")
// Collect any validation errors and return them all at once
var errorText string
if (viper.GetString("tls_letsencrypt_hostname") != "") &&