diff --git a/cl/phase1/stages/forkchoice.go b/cl/phase1/stages/forkchoice.go index 0e8f96f2082..2b095c25758 100644 --- a/cl/phase1/stages/forkchoice.go +++ b/cl/phase1/stages/forkchoice.go @@ -167,7 +167,7 @@ func updateCanonicalChainInTheDatabase(ctx context.Context, tx kv.RwTx, headSlot return fmt.Errorf("failed to read parent block root: %w", err) } if parentRoot != oldCanonical { - log.Info("cl reorg", "new_head_slot", headSlot, "fork_slot", currentSlot, "old_canonical", oldCanonical, "new_canonical", headRoot) + log.Debug("cl reorg", "new_head_slot", headSlot, "fork_slot", currentSlot, "old_canonical", oldCanonical, "new_canonical", headRoot) oldStateRoot, err := beacon_indicies.ReadStateRootByBlockRoot(ctx, tx, oldCanonical) if err != nil { log.Warn("failed to read state root by block root", "err", err, "block_root", oldCanonical)