remove debugging line

This commit is contained in:
Dustin J. Mitchell 2022-09-02 14:49:46 +00:00
parent 1377bd5bd2
commit e6afa04a3a
No known key found for this signature in database

View file

@ -1947,7 +1947,6 @@ func (v *Viper) searchInPath(in string) (filename string, err error) {
for _, ext := range SupportedExts {
jww.DEBUG.Println("Checking for", filepath.Join(in, v.configName+"."+ext))
b, err := exists(v.fs, filepath.Join(in, v.configName+"."+ext))
fmt.Printf("%s %t %s\n", filepath.Join(in, v.configName+"."+ext), b, err)
if err != nil {
lastError = err
} else if b {