From a6fea612377657516700e668b4d2cfc5c11afa74 Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Mon, 6 Apr 2015 16:23:11 -0700 Subject: [PATCH] Remove debugging --- testutil/accumulator.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/testutil/accumulator.go b/testutil/accumulator.go index 6d048d109..ad594a7e3 100644 --- a/testutil/accumulator.go +++ b/testutil/accumulator.go @@ -13,8 +13,6 @@ type Accumulator struct { } func (a *Accumulator) Add(name string, value interface{}, tags map[string]string) { - fmt.Printf("Add: %s => %v (%#v)\n", name, value, tags) - a.Points = append(a.Points, &Point{name, value, tags}) }