From ca6e70e1df3d7333d19e1d63d149479b7f6da183 Mon Sep 17 00:00:00 2001 From: John Smith Date: Mon, 29 May 2023 15:33:53 -0400 Subject: [PATCH] cleanup --- veilid-core/src/routing_table/routing_table_inner.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/veilid-core/src/routing_table/routing_table_inner.rs b/veilid-core/src/routing_table/routing_table_inner.rs index 1d4b409c..eea23a83 100644 --- a/veilid-core/src/routing_table/routing_table_inner.rs +++ b/veilid-core/src/routing_table/routing_table_inner.rs @@ -557,18 +557,11 @@ impl RoutingTableInner { .map(|nr| nr.same_bucket_entry(&entry)) .unwrap_or(false); if e.needs_ping(cur_ts, is_our_relay) { - debug!("needs_ping: {}", e.best_node_id()); return true; } // If we need a ping because this node hasn't seen our latest node info, then do it if let Some(own_node_info_ts) = own_node_info_ts { if !e.has_seen_our_node_info_ts(routing_domain, own_node_info_ts) { - //xxx remove this when we fix #208 - debug!( - "!has_seen_our_node_info_ts: {} own_node_info_ts={}", - e.best_node_id(), - own_node_info_ts - ); return true; } }