From fe934eb7a0e6b1a7ec2bae4ca76d6442cad70838 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 6 May 2020 08:48:27 -0700 Subject: [PATCH] Reduce spammy 'ReceiveUpdates took:' log --- core/src/cluster_info.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/cluster_info.rs b/core/src/cluster_info.rs index cb820fdd7d..440c44a7fe 100644 --- a/core/src/cluster_info.rs +++ b/core/src/cluster_info.rs @@ -2027,7 +2027,7 @@ impl Node { fn report_time_spent(label: &str, time: &Duration, extra: &str) { let count = duration_as_ms(time); - if count > 5 { + if count > 100 { info!("{} took: {} ms {}", label, count, extra); } }