Remove debugging

This commit is contained in:
Evan Phoenix 2015-04-06 16:23:11 -07:00
parent 941c9acabf
commit a6fea61237
1 changed files with 0 additions and 2 deletions

View File

@ -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})
}