drop error log down to debug
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
Jeromy committed
Nov 9, 2015 at 23:18 UTC
70b64ac88c912015353f813636aa3639dd3c4832
1 file changed
+1
-1
routing/dht/query.go
+1
-1
@@ -229,7 +229,7 @@ func (r *dhtQueryRunner) queryPeer(proc process.Process, p peer.ID) {
229
// make sure we're connected to the peer.
230
// FIXME abstract away into the network layer
231
if conns := r.query.dht.host.Network().ConnsToPeer(p); len(conns) == 0 {
232
- log.Error("not connected. dialing.")
232
+ log.Debug("not connected. dialing.")
233
234
notif.PublishQueryEvent(r.runCtx, ¬if.QueryEvent{
235
Type: notif.DialingPeer,