Skip to content

Commit a5bee2e

Browse files
committed
Remove verbose error log
1 parent d2c45ab commit a5bee2e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

block/internal/common/replay.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ func (s *Replayer) SyncToHeight(ctx context.Context, targetHeight uint64) error
7070
// If execution layer is ahead, we cannot proceed safely as this indicates state divergence.
7171
// The execution layer must be rolled back before the node can continue.
7272
if execHeight > targetHeight {
73-
s.logger.Error().
74-
Uint64("target_height", targetHeight).
75-
Uint64("exec_layer_height", execHeight).
76-
Msg("execution layer ahead of target - manual rollback required")
7773
return fmt.Errorf("execution layer height (%d) ahead of target height (%d): manually rollback execution layer to height %d",
7874
execHeight, targetHeight, targetHeight)
7975
}

0 commit comments

Comments
 (0)