From ecf65dac9ed0a7648b02b2ae037e14cfce0919dd Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Sun, 25 Aug 2013 21:55:23 -0400 Subject: Removed debugging code, specifically the dump function that uses the spew package. Thanks, Anthony. --- util.go | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'util.go') diff --git a/util.go b/util.go index 823bf68..86ddd37 100644 --- a/util.go +++ b/util.go @@ -20,8 +20,7 @@ import ( "bytes" "compress/zlib" "fmt" - "github.com/davecgh/go-spew/spew" - // "io/ioutil" + // "github.com/davecgh/go-spew/spew" "math" "os" "regexp" @@ -224,12 +223,11 @@ func strIf(cnd bool, aStr, bStr string) string { } // Dump the internals of the specified values -func dump(fileStr string, a ...interface{}) { - fl, err := os.OpenFile(fileStr, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0600) - if err == nil { - fmt.Fprintf(fl, "----------------\n") - spew.Fdump(fl, a...) - fl.Close() - } - // ioutil.WriteFile(fileStr, []byte(spew.Sdump(a)), os.ModeAppend) -} +// func dump(fileStr string, a ...interface{}) { +// fl, err := os.OpenFile(fileStr, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0600) +// if err == nil { +// fmt.Fprintf(fl, "----------------\n") +// spew.Fdump(fl, a...) +// fl.Close() +// } +// } -- cgit v1.2.1-24-ge1ad