Reduce ReceiveUpdates log spam

This commit is contained in:
Michael Vines 2020-04-17 10:30:36 -07:00
parent 7207a91aa5
commit 7b5cdf6adf
1 changed files with 1 additions and 1 deletions

View File

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