From 14f9bb7b820ad46a16442764cf11dd5a607d2c04 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 27 Mar 2018 15:13:01 -0400 Subject: [PATCH] log EWOULDBLOCK --- 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 505ce4202..7e018c68a 100644 --- a/lbrynet/dht/protocol.py +++ b/lbrynet/dht/protocol.py @@ -345,7 +345,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.debug("Can't send data to dht: EWOULDBLOCK") + log.warning("Can't send data to dht: EWOULDBLOCK") elif err.errno == errno.ENETUNREACH: # this should probably try to retransmit when the network connection is back log.error("Network is unreachable")