Skip to content

Commit dba1f87

Browse files
committed
fix: fixed error reporting to info and not debug when fetching an old block
1 parent 215ebf1 commit dba1f87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

transaction.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ func (o *OverflowState) StreamTransactions(ctx context.Context, poll time.Durati
263263
// we are still processing historical blocks
264264
block, err = o.GetBlockAtHeight(ctx, nextBlockToProcess)
265265
if err != nil {
266-
logg.Debug("error fetching old block", zap.Error(err))
266+
logg.Info("error fetching old block", zap.Error(err))
267267
continue
268268
}
269269
} else if nextBlockToProcess != latestKnownBlock.Height {

0 commit comments

Comments
 (0)