From 749d783b1e1c488ef0c2333ac74efb09bf21d24d Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 21 Apr 2024 08:53:35 -0400 Subject: [PATCH] Comment the insanely aggressive timeout future trace log --- coordinator/tributary/tendermint/src/round.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coordinator/tributary/tendermint/src/round.rs b/coordinator/tributary/tendermint/src/round.rs index 445c2784..b39cebe5 100644 --- a/coordinator/tributary/tendermint/src/round.rs +++ b/coordinator/tributary/tendermint/src/round.rs @@ -58,12 +58,14 @@ impl RoundData { // Poll all set timeouts, returning the Step whose timeout has just expired pub(crate) async fn timeout_future(&self) -> Step { let now = Instant::now(); + /* log::trace!( target: "tendermint", "getting timeout_future, from step {:?}, off timeouts: {:?}", self.step, self.timeouts.iter().map(|(k, v)| (k, v.duration_since(now))).collect::>() ); + */ let timeout_future = |step| { let timeout = self.timeouts.get(&step).copied();