From a55c6cb2f340cb451051021712dfb122d0a44726 Mon Sep 17 00:00:00 2001 From: travisturner Date: Sat, 26 Jul 2014 14:31:56 -0500 Subject: [PATCH] removed some debugging --- executor/utils.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/executor/utils.go b/executor/utils.go index c308638ef..88290db30 100644 --- a/executor/utils.go +++ b/executor/utils.go @@ -32,14 +32,9 @@ func GetMacro(file_name string, filter string) interface{} { // ql is []interface{} switch ql := query_list_interface.(type) { case []interface{}: - spew.Dump("INTERFACE", ql) // q is map[string]interface{} for i, _ := range ql { q := ql[i].(map[string]interface{}) - spew.Dump(ql[i]) - spew.Dump(q) - spew.Dump(q["label"].(string)) - spew.Dump(q["pql"].(string)) query_list = append(query_list, query.PqlListItem{Label: q["label"].(string), PQL: q["pql"].(string)}) } default: