From c627e68fdbc728d5318f3c94c9a3d97d27cab03c Mon Sep 17 00:00:00 2001 From: Adrian Duke Date: Thu, 19 Mar 2026 17:59:53 +0000 Subject: [PATCH] node/reactor: Demote reactor lag log to DEBUG Demote from WARN to DEBUG as no actions to remedy can be taken by users. --- crates/radicle-node/src/reactor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/radicle-node/src/reactor.rs b/crates/radicle-node/src/reactor.rs index df337929..bb17a451 100644 --- a/crates/radicle-node/src/reactor.rs +++ b/crates/radicle-node/src/reactor.rs @@ -432,7 +432,7 @@ impl Runtime { let duration = Instant::now().duration_since(tick); if duration > LAG_TIMEOUT { - log::warn!(target: "reactor", "Service was busy {:?} which exceeds the timeout of {:?}", duration, LAG_TIMEOUT); + log::debug!(target: "reactor", "Service was busy {:?} which exceeds the timeout of {:?}", duration, LAG_TIMEOUT); } self.handle_actions(tick);