move log messages out of warning level

This commit is contained in:
Jeromy 2015-04-13 19:48:55 -07:00
parent ed06488e55
commit e186e740de
2 changed files with 2 additions and 2 deletions

View File

@ -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
}

View File

@ -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
}