Skip to content

Commit

Permalink
refactor: put log back to debug when default configuration is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
sgaist committed Jul 18, 2024
1 parent cfebe6a commit 3d397f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commands/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func initConfig(configFile string, pathChanged bool) error {
if err := viper.ReadInConfig(); err != nil {
if errors.Is(err, os.ErrNotExist) {
if !pathChanged {
log.Warnf("Default config file %q not found, using built in values", log.FilePath(configFile))
log.Debugf("Default config file %q not found, using built in values", log.FilePath(configFile))
return nil
}
}
Expand Down

0 comments on commit 3d397f0

Please sign in to comment.