From e6afa04a3aff0d5576bee4e05db9c534a6d4efaf Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Fri, 2 Sep 2022 14:49:46 +0000 Subject: [PATCH] remove debugging line --- viper.go | 1 - 1 file changed, 1 deletion(-) diff --git a/viper.go b/viper.go index 7f87f04..c106c53 100644 --- a/viper.go +++ b/viper.go @@ -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 {