From c0b3acf18167d6ff03492a3205bd17f4d8ccff1c Mon Sep 17 00:00:00 2001 From: sprites0 <199826320+sprites0@users.noreply.github.com> Date: Fri, 1 Aug 2025 17:37:29 +0000 Subject: [PATCH] perf: Reduce log --- src/pseudo_peer/sources/hl_node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pseudo_peer/sources/hl_node.rs b/src/pseudo_peer/sources/hl_node.rs index 157683c3d..0960552c2 100644 --- a/src/pseudo_peer/sources/hl_node.rs +++ b/src/pseudo_peer/sources/hl_node.rs @@ -143,9 +143,9 @@ impl BlockSource for HlNodeBlockSource { fn collect_block(&self, height: u64) -> BoxFuture> { Box::pin(async move { if let Some(block) = self.try_collect_local_block(height).await { - info!("Returning locally synced block for @ Height [{height}]"); Ok(block) } else { + info!("Falling back to s3/ingest-dir for block @ Height [{height}]"); self.fallback.collect_block(height).await } })