Skip to content

Commit b1946ea

Browse files
authored
Make Initial Sync Failures Debug (#6930)
* shift to debug logs * Merge branch 'master' into makeFailuresDebug * go sum * Merge branch 'master' into makeFailuresDebug * Merge branch 'master' into makeFailuresDebug * Merge refs/heads/master into makeFailuresDebug
1 parent 7591240 commit b1946ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

beacon-chain/sync/initial-sync/round_robin.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ func (s *Service) roundRobinSync(genesis time.Time) error {
6969
// Use Batch Block Verify to process and verify batches directly.
7070
if featureconfig.Get().BatchBlockVerify {
7171
if err := s.processBatchedBlocks(ctx, genesis, fetchedBlocks, batchReceiver); err != nil {
72-
log.WithError(err).Info("Batch is not processed")
72+
log.WithError(err).Debug("Batch is not processed")
7373
}
7474
continue
7575
}
7676
for _, blk := range fetchedBlocks {
7777
if err := s.processBlock(ctx, genesis, blk, blockReceiver); err != nil {
78-
log.WithError(err).Info("Block is not processed")
78+
log.WithError(err).Debug("Block is not processed")
7979
continue
8080
}
8181
}

0 commit comments

Comments
 (0)