Merge pull request #355 from matiu/bug/peermanager-log

change log in checkStatus to .debug
This commit is contained in:
Manuel Aráoz 2014-05-26 12:17:01 -03:00
commit 6c7f45dcd2
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ PeerManager.prototype.checkStatus = function checkStatus() {
this.peers.forEach(function(p) {
if (p.connection && !p.connection._connecting) connected++
});
log.info(connected + ' of ' + this.peers.length + ' peers connected');
log.debug(connected + ' of ' + this.peers.length + ' peers connected');
Object.keys(peerIndex).forEach(function(i) {
this.connectTo(peerIndex[i]);