From 155876d28c91e172d692155b658e15514d733469 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Thu, 23 May 2024 07:17:48 -0400 Subject: [PATCH] chore: improve HaveNotReceivedUpdatesForAWhile warning (#8356) --- crates/node/events/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node/events/src/node.rs b/crates/node/events/src/node.rs index 383da986b..8c01c0a73 100644 --- a/crates/node/events/src/node.rs +++ b/crates/node/events/src/node.rs @@ -315,7 +315,7 @@ impl NodeState { warn!("Beacon client online, but never received consensus updates. Please ensure your beacon client is operational to follow the chain!") } ConsensusLayerHealthEvent::HaveNotReceivedUpdatesForAWhile(period) => { - warn!(?period, "Beacon client online, but no consensus updates received for a while. Please fix your beacon client to follow the chain!") + warn!(?period, "Beacon client online, but no consensus updates received for a while. This may be because of a reth error, or an error in the beacon client! Please investigate reth and beacon client logs!") } } }