Reduce spammy 'ReceiveUpdates took:' log

This commit is contained in:
Michael Vines
2020-05-06 08:48:27 -07:00
parent 62a0c2f348
commit fe934eb7a0

View File

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