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:
parent
a6a3716f5d
commit
c627e68fdb
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue