From 72fe22067ce49b5e3c92a8ce5f74a301f55083c1 Mon Sep 17 00:00:00 2001 From: Eitan Seri- Levi Date: Fri, 13 Feb 2026 23:49:59 -0800 Subject: [PATCH] Import logs --- .../src/payload_envelope_verification/import.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/beacon_node/beacon_chain/src/payload_envelope_verification/import.rs b/beacon_node/beacon_chain/src/payload_envelope_verification/import.rs index 3628712721..7188793492 100644 --- a/beacon_node/beacon_chain/src/payload_envelope_verification/import.rs +++ b/beacon_node/beacon_chain/src/payload_envelope_verification/import.rs @@ -5,7 +5,7 @@ use fork_choice::PayloadVerificationStatus; use logging::crit; use slot_clock::SlotClock; use store::StoreOp; -use tracing::{debug, error, info_span, instrument}; +use tracing::{debug, error, info, info_span, instrument, warn}; use types::{BeaconState, BlockImportSource, Hash256, SignedBeaconBlock, Slot}; use super::{ @@ -111,11 +111,11 @@ impl BeaconChain { match import_envelope.await { // The block was successfully verified and imported. Yay. Ok(status @ AvailabilityProcessingStatus::Imported(block_root)) => { - debug!( + info!( ?block_root, %block_slot, source = %block_source, - "Envelope imported" + "Execution payload envelope imported" ); metrics::inc_counter(&metrics::ENVELOPE_PROCESSING_SUCCESSES); @@ -148,7 +148,7 @@ impl BeaconChain { } // The block failed verification. Err(other) => { - debug!(reason = other.to_string(), " Envelope rejected"); + warn!(reason = other.to_string(), "Execution payload envelope rejected"); Err(other) } }