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); } }