Skip to content

Commit

Permalink
Configuration load failure is just a debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed Oct 15, 2024
1 parent 56ca6cd commit 6d9432a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func loadConfiguration(cmd *cobra.Command) {
if err := viper.ReadInConfig(); err == nil {
ui.Info().Msgf("Using configuration file: %v", viper.ConfigFileUsed())
} else {
ui.Error().Msgf("Problem loading settings: %v", err.Error())
ui.Debug().Msgf("No settings loaded: %v", err.Error())
}

bindFlags(cmd)
Expand Down

0 comments on commit 6d9432a

Please sign in to comment.