mirror of https://github.com/status-im/nim-eth.git
Merge pull request #41 from status-im/bondin-failed-msg
Lower bonding failed msg verbosity
This commit is contained in:
commit
acf43b364d
|
@ -333,7 +333,7 @@ proc bond(k: KademliaProtocol, n: Node): Future[bool] {.async.} =
|
||||||
|
|
||||||
let gotPong = await k.waitPong(n, pid)
|
let gotPong = await k.waitPong(n, pid)
|
||||||
if not gotPong:
|
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
|
# Drop the failing node and schedule a populateNotFullBuckets() call to try and
|
||||||
# fill its spot.
|
# fill its spot.
|
||||||
k.routing.removeNode(n)
|
k.routing.removeNode(n)
|
||||||
|
|
Loading…
Reference in New Issue