Skip to content

Commit

Permalink
fix: fixed error reporting to info and not debug when fetching an old…
Browse files Browse the repository at this point in the history
… block
  • Loading branch information
bjartek committed Feb 2, 2024
1 parent 215ebf1 commit dba1f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func (o *OverflowState) StreamTransactions(ctx context.Context, poll time.Durati
// we are still processing historical blocks
block, err = o.GetBlockAtHeight(ctx, nextBlockToProcess)
if err != nil {
logg.Debug("error fetching old block", zap.Error(err))
logg.Info("error fetching old block", zap.Error(err))
continue
}
} else if nextBlockToProcess != latestKnownBlock.Height {
Expand Down

0 comments on commit dba1f87

Please sign in to comment.