From 8f7cf0b38fa1d940048397b71ce0d926f429c11b Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 29 Jan 2019 13:08:11 -0500 Subject: [PATCH] verbose logging --- lbrynet/dht/node.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lbrynet/dht/node.py b/lbrynet/dht/node.py index d4f773ae9..4e55e2fac 100644 --- a/lbrynet/dht/node.py +++ b/lbrynet/dht/node.py @@ -232,10 +232,7 @@ class Node: async with self.peer_search_junction(self.protocol.node_id, max_results=max_results, bottom_out_limit=bottom_out_limit) as junction: async for peers in junction: - log.info("peer search: %s", peers) accumulated.extend(peers) - log.info("junction done") - log.info("context done") distance = Distance(node_id) accumulated.sort(key=lambda peer: distance(peer.node_id)) return accumulated[:count]