From 7b5cdf6adf936e00826f6c5b65c7c38fc1cda29c Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 17 Apr 2020 10:30:36 -0700 Subject: [PATCH] Reduce ReceiveUpdates log spam --- 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 9eb0f57297..fdf86b7584 100644 --- a/core/src/cluster_info.rs +++ b/core/src/cluster_info.rs @@ -1866,7 +1866,7 @@ impl Node { fn report_time_spent(label: &str, time: &Duration, extra: &str) { let time_ms = duration_as_ms(time); - if time_ms > 50 { + if time_ms > 100 { info!("{} took: {} ms {}", label, time_ms, extra); } }