From eaed271a00fc809a1352297810ecd4dab0e3cc6a Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Sun, 17 Sep 2017 23:54:37 +0200 Subject: [PATCH] cmd: config: remove annoying parser logs --- cmd/config_parse.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/config_parse.go b/cmd/config_parse.go index 65c754b..8f7ad22 100644 --- a/cmd/config_parse.go +++ b/cmd/config_parse.go @@ -35,10 +35,8 @@ func ParseConfig(ctx context.Context, path string) (config *Config, err error) { if path == "" { // Try default locations for _, l := range ConfigFileDefaultLocations { - log.Printf("trying config location %s", l) stat, err := os.Stat(l) if err != nil { - log.Printf("stat error: %s", err) continue } if !stat.Mode().IsRegular() {