blockstore: remove expensive debug statement in AllKeysChan
License: MIT Signed-off-by: Kevin Atkinson <k@kevina.org>
Kevin Atkinson committed
Nov 14, 2016 at 16:57 UTC
62c380b001612645c68b8d62cdaefa4ee86b8e4d
1 file changed
-2
blocks/blockstore/blockstore.go
-2
@@ -202,8 +202,6 @@ func (bs *blockstore) AllKeysChan(ctx context.Context) (<-chan *cid.Cid, error)
202
return nil, true
203
}
204
205
- log.Debug("blockstore: query got key", c)
206
-
205
return c, true
206
}
207
}