From 61ff1352c460fc6370fcb774718a17bafb8f2bdf Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Tue, 9 Feb 2016 09:59:59 -0600 Subject: [PATCH] Remove debugging --- config_file.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/config_file.go b/config_file.go index 076a7ce..60bad54 100644 --- a/config_file.go +++ b/config_file.go @@ -4,7 +4,6 @@ package userConfig import ( "bytes" "errors" - "fmt" "io/ioutil" "strings" @@ -56,11 +55,9 @@ func (gf *GeneralConfig) Load() error { func (gf *GeneralConfig) Save() error { buf := new(bytes.Buffer) cfgPath := gf.Path + "/" + gf.Name + ".conf" - fmt.Println("Writing Config File: " + cfgPath) if err := toml.NewEncoder(buf).Encode(gf); err != nil { return err } - fmt.Println("Writing Config File: " + buf.String()) return ioutil.WriteFile(cfgPath, buf.Bytes(), 0644) }