From 511013dbe4b845dcb2898f37852a2e260162c9f9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 13 Jun 2015 17:05:38 -0400 Subject: [PATCH] fix go vet warning --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index aab28c141..7f5cb7bef 100644 --- a/main.go +++ b/main.go @@ -238,7 +238,7 @@ func loadConfig() (*config, error) { return nil, err } - log.Println("[WARN] Config file doesn't exist: %s", configFilePath) + log.Printf("[WARN] Config file doesn't exist: %s", configFilePath) return &config, nil } defer f.Close()