export-range: use debug log instead of warn for not found receipt events

This commit is contained in:
Hector Sanjuan 2023-03-28 15:05:43 +02:00
parent 6942020253
commit 39b27e709e

View File

@ -425,7 +425,7 @@ func (s *walkScheduler) processTask(t walkTask, workerN int) error {
blk, err := s.store.Get(s.ctx, t.c)
if errors.Is(err, format.ErrNotFound{}) && t.topLevelTaskType == receiptTask {
log.Warnw("ignoring not-found block in Receipts",
log.Debugw("ignoring not-found block in Receipts",
"block", t.blockCid,
"epoch", t.epoch,
"cid", t.c)