Commit b29cf0c3 authored by Jeromy's avatar Jeromy

move log messages out of warning level

parent 15854ee4
......@@ -54,7 +54,7 @@ func (dht *IpfsDHT) handleNewMessage(s inet.Stream) {
// if nil response, return it before serializing
if rpmes == nil {
log.Warning("Got back nil response from request.")
log.Debug("Got back nil response from request.")
return
}
......
......@@ -140,7 +140,7 @@ func (dht *IpfsDHT) handleFindPeer(ctx context.Context, p peer.ID, pmes *pb.Mess
}
if closest == nil {
log.Warningf("%s handleFindPeer %s: could not find anything.", dht.self, p)
log.Infof("%s handleFindPeer %s: could not find anything.", dht.self, p)
return resp, nil
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment