node/reactor: Demote reactor lag log to DEBUG

Demote from WARN to DEBUG as no actions to remedy can be taken by users.
This commit is contained in:
Adrian Duke 2026-03-19 17:59:53 +00:00 committed by Fintan Halpenny
parent a6a3716f5d
commit c627e68fdb
1 changed files with 1 additions and 1 deletions

View File

@ -432,7 +432,7 @@ impl<H: ReactionHandler> Runtime<H> {
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);