diff --git a/crates/optimism/flashblocks/src/service.rs b/crates/optimism/flashblocks/src/service.rs index 36f8ed32a6c..dab3087b4b4 100644 --- a/crates/optimism/flashblocks/src/service.rs +++ b/crates/optimism/flashblocks/src/service.rs @@ -23,7 +23,7 @@ use std::{ time::{Duration, Instant}, }; use tokio::pin; -use tracing::{debug, trace}; +use tracing::{debug, trace, warn}; /// The `FlashBlockService` maintains an in-memory [`PendingBlock`] built out of a sequence of /// [`FlashBlock`]s. @@ -85,6 +85,8 @@ where let _ = tx.send(block).inspect_err(|e| tracing::error!("{e}")); } } + + warn!("Flashblock service has stopped"); } /// Returns the cached reads at the given head hash.