Browse Source

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

change log in checkStatus to .debug
patch-2
Manuel Aráoz 11 years ago
parent
commit
6c7f45dcd2
  1. 2
      lib/PeerManager.js

2
lib/PeerManager.js

@ -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]);

Loading…
Cancel
Save