From bc4a9c4f07b1cad858d4bdd6d19ddf07493ed76f Mon Sep 17 00:00:00 2001 From: Matthias Hannig Date: Thu, 18 May 2017 17:35:12 +0200 Subject: [PATCH] removed debug println --- backend/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/config.go b/backend/config.go index d183105..41f4e30 100644 --- a/backend/config.go +++ b/backend/config.go @@ -206,6 +206,7 @@ func getSources(config *ini.File) ([]SourceConfig, error) { // Make config config := SourceConfig{ + Name: section.Key("name").MustString("Unknown Source"), Type: backendType, } @@ -257,7 +258,6 @@ func loadConfigs(base, global, local string) (*Config, error) { Sources: sources, } - fmt.Println(config) return config, nil }