From c449bd53ea6464e4e9a4db3a91d209ec6ad39dd7 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Thu, 26 Oct 2023 16:48:51 +0100 Subject: [PATCH] feat(engine): downgrade pipeline inconsistency log to debug (#5196) --- crates/consensus/beacon/src/engine/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/consensus/beacon/src/engine/mod.rs b/crates/consensus/beacon/src/engine/mod.rs index 8ed944fc96..746e3a5447 100644 --- a/crates/consensus/beacon/src/engine/mod.rs +++ b/crates/consensus/beacon/src/engine/mod.rs @@ -347,7 +347,7 @@ where // If the checkpoint of any stage is less than the checkpoint of the first stage, // retrieve and return the block hash of the latest header and use it as the target. if stage_checkpoint < first_stage_checkpoint { - warn!( + debug!( target: "consensus::engine", first_stage_checkpoint, inconsistent_stage_id = %stage_id,