1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

removed debug println

This commit is contained in:
Matthias Hannig
2017-05-18 17:35:12 +02:00
parent d6aa7de70f
commit bc4a9c4f07

View File

@ -206,6 +206,7 @@ func getSources(config *ini.File) ([]SourceConfig, error) {
// Make config // Make config
config := SourceConfig{ config := SourceConfig{
Name: section.Key("name").MustString("Unknown Source"),
Type: backendType, Type: backendType,
} }
@ -257,7 +258,6 @@ func loadConfigs(base, global, local string) (*Config, error) {
Sources: sources, Sources: sources,
} }
fmt.Println(config)
return config, nil return config, nil
} }