Compare commits

...

2 Commits

Author SHA1 Message Date
prylabs-bulldozer[bot]
40a3391229 Merge refs/heads/develop into revert-12739-shiftToDebug 2023-08-16 00:48:00 +00:00
Nishant Das
6622882533 Revert "Shift Error Logs To Debug (#12739)"
This reverts commit 4098d098aa.
2023-08-16 08:09:23 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -97,7 +97,7 @@ func (s *Service) postBlockProcess(ctx context.Context, signed interfaces.ReadOn
optimistic, err := s.cfg.ForkChoiceStore.IsOptimistic(blockRoot)
if err != nil {
log.WithError(err).Debug("Could not check if block is optimistic")
log.WithError(err).Error("Could not check if block is optimistic")
optimistic = true
}

View File

@@ -192,7 +192,7 @@ func (s *Service) ReceiveBlockBatch(ctx context.Context, blocks []interfaces.Rea
}
optimistic, err := s.cfg.ForkChoiceStore.IsOptimistic(blkRoots[i])
if err != nil {
log.WithError(err).Debug("Could not check if block is optimistic")
log.WithError(err).Error("Could not check if block is optimistic")
optimistic = true
}
// Send notification of the processed block to the state feed.