diff --git a/tsdb/tombstones/tombstones.go b/tsdb/tombstones/tombstones.go index e303f8f64f..9cdf05a1e9 100644 --- a/tsdb/tombstones/tombstones.go +++ b/tsdb/tombstones/tombstones.go @@ -253,7 +253,6 @@ func (t *memTombstones) AddInterval(ref uint64, itvs ...Interval) { t.mtx.Lock() defer t.mtx.Unlock() for _, itv := range itvs { - fmt.Println("adding interval to ref: ", ref) t.intvlGroups[ref] = t.intvlGroups[ref].Add(itv) } }