From 6634e7d8efa353afe79f5ca7738a6bf55c05fde4 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Sat, 5 Sep 2020 16:33:52 -0400 Subject: [PATCH] Minor tweak --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 04d261d..eee1bde 100644 --- a/config/config.go +++ b/config/config.go @@ -31,7 +31,7 @@ func LoadConfig() (*koanf.Koanf, *kfile.File) { configFileProvider := kfile.Provider(CONFIG_FILE_PATH) _, err := os.Stat(CONFIG_FILE_PATH) if os.IsNotExist(err) { - //log.Printf("%s does not exist, USING DEFAULTS", ui.CONFIG_FILE_PATH) + //log.Printf("%s does not exist, USING DEFAULTS", CONFIG_FILE_PATH) } else { if errConfigFile := pfConfig.Load(configFileProvider, toml.Parser()); errConfigFile != nil { log.Fatalf("Error loading config : %s", err)