Skip to content

Commit

Permalink
remove annoying prints from when feature was built
Browse files Browse the repository at this point in the history
  • Loading branch information
Dieterbe committed May 3, 2015
1 parent dfc5c55 commit 72de483
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion aggregator/aggregator.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ func (a *Aggregator) Flush(ts uint) {
if agg.ts < ts {
result := a.fn(agg.values)
metric := fmt.Sprintf("%s %f %d", string(agg.key), result, agg.ts)
fmt.Println("submitting result", metric)
a.out <- []byte(metric)
} else {
aggregations2 = append(aggregations2, agg)
Expand Down

0 comments on commit 72de483

Please sign in to comment.