From f295418f75f0ae00c3b8b6c2270ef6b0d5f08b0f Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Mon, 15 Apr 2019 12:50:00 +0300 Subject: [PATCH] Lower bonding failed msg verbosity --- eth/p2p/kademlia.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/p2p/kademlia.nim b/eth/p2p/kademlia.nim index edbf0ef..702444d 100644 --- a/eth/p2p/kademlia.nim +++ b/eth/p2p/kademlia.nim @@ -333,7 +333,7 @@ proc bond(k: KademliaProtocol, n: Node): Future[bool] {.async.} = let gotPong = await k.waitPong(n, pid) if not gotPong: - debug "Bonding failed, didn't receive pong from", n + trace "Bonding failed, didn't receive pong from", n # Drop the failing node and schedule a populateNotFullBuckets() call to try and # fill its spot. k.routing.removeNode(n)