diff --git a/pkg/morph/event/listener.go b/pkg/morph/event/listener.go index 2f6f8da69..833c6558a 100644 --- a/pkg/morph/event/listener.go +++ b/pkg/morph/event/listener.go @@ -155,7 +155,13 @@ func (s listener) listen(ctx context.Context, intError chan<- error) error { func (s listener) listenLoop(ctx context.Context, chEvent <-chan *state.NotificationEvent, intErr chan<- error) { blockChan, err := s.subscriber.BlockNotifications() if err != nil { - intErr <- errors.Wrap(err, "could not open block notifications channel") + if intErr != nil { + intErr <- errors.Wrap(err, "could not open block notifications channel") + } else { + s.log.Debug("could not open block notifications channel", + zap.String("error", err.Error()), + ) + } return }