Compare commits

...

1 Commits

Author SHA1 Message Date
Raul Jordan
18fbc8aecb sync logs 2022-08-17 21:31:49 -04:00

View File

@@ -179,14 +179,14 @@ func (s *Service) broadcastSyncCommittee(ctx context.Context, subnet uint64, sMs
}
return errors.New("failed to find peers for subnet")
}(); err != nil {
log.WithError(err).Error("Failed to find peers")
log.WithError(err).Debug("Failed to find peers")
tracing.AnnotateError(span, err)
}
}
// In the event our sync message is outdated and beyond the
// acceptable threshold, we exit early and do not broadcast it.
if err := altair.ValidateSyncMessageTime(sMsg.Slot, s.genesisTime, params.BeaconNetworkConfig().MaximumGossipClockDisparity); err != nil {
log.WithError(err).Warn("Sync Committee Message is too old to broadcast, discarding it")
log.WithError(err).Debug("Sync committee message is too old to broadcast, discarding it")
return
}