change log in checkStatus to .debug

This commit is contained in:
Matias Alejo Garcia 2014-05-25 22:19:04 -03:00
parent 5594f82398
commit 349143ba02
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]);