diff --git a/run.go b/run.go index a5cace4..4be08de 100644 --- a/run.go +++ b/run.go @@ -98,7 +98,6 @@ func runApp(cmd *Command, args []string) { // loadConfig loads customized configuration. func loadConfig() error { - fmt.Println("[INFO] Detect bee.json") f, err := os.Open("bee.json") if err != nil { // Use default. @@ -108,6 +107,7 @@ func loadConfig() error { } } else { defer f.Close() + fmt.Println("[INFO] Detected bee.json") d := json.NewDecoder(f) err = d.Decode(&conf) if err != nil {