Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Change unable to handle events to warn as it is not actionable in mos…
Browse files Browse the repository at this point in the history
…t cases
  • Loading branch information
mpetrun5 committed Oct 16, 2023
1 parent 4459710 commit 3f6136c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chains/evm/listener/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ loop:
for _, handler := range l.eventHandlers {
err := handler.HandleEvent(startBlock, new(big.Int).Sub(endBlock, big.NewInt(1)), msgChan)
if err != nil {
l.log.Error().Err(err).Msgf("Unable to handle events")
l.log.Warn().Err(err).Msgf("Unable to handle events")
continue loop
}

Expand Down

0 comments on commit 3f6136c

Please sign in to comment.