Skip to content

Commit

Permalink
de-capitalize
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Abro <AustinAbro321@gmail.com>
  • Loading branch information
AustinAbro321 committed Feb 19, 2025
1 parent 5f3d238 commit b204e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/viper.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func PrintViperConfigUsed(ctx context.Context) error {
l.Info("using config file", "location", cfgFile)
fileType := strings.TrimPrefix(filepath.Ext(cfgFile), ".")
if !(fileType == "yml" || fileType == "yaml" || fileType == "toml") {
l.Warn("configuration file types other than YAML and TOML are deprecated and will be removed in a future release", "fileType", fileType)
l.Warn("configuration file types other than yaml and toml deprecated and will be removed in a future release", "fileType", fileType)
}
}
return nil
Expand Down

0 comments on commit b204e80

Please sign in to comment.