From d2f01a214dd40012e6b6aac6951059a44c7e6e65 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 19 Apr 2017 15:59:44 -0400 Subject: [PATCH] reduce logging level for noisy dht warning --- lbrynet/dht/protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/dht/protocol.py b/lbrynet/dht/protocol.py index d5348edd4..f50257099 100644 --- a/lbrynet/dht/protocol.py +++ b/lbrynet/dht/protocol.py @@ -260,7 +260,7 @@ class KademliaProtocol(protocol.DatagramProtocol): if err.errno == errno.EWOULDBLOCK: # i'm scared this may swallow important errors, but i get a million of these # on Linux and it doesnt seem to affect anything -grin - log.warning("Can't send data to dht: EWOULDBLOCK") + log.debug("Can't send data to dht: EWOULDBLOCK") else: raise err