diff --git a/src/lib/agent/PeerServer.mjs b/src/lib/agent/PeerServer.mjs index 41e9cbc..9d3168f 100644 --- a/src/lib/agent/PeerServer.mjs +++ b/src/lib/agent/PeerServer.mjs @@ -191,7 +191,7 @@ class PeerServer extends EventEmitter { * @return {Promise} A Promise that resolves to the resulting Peer connection, or null if the connection wasn't attemped. */ async __add_peer(address, port) { - l.info(`Attempting to connect to ${address}:${port}`); + l.debug(`Attempting to connect to ${address}:${port}`); // If we're already connected, don't bother reconnecting again if(this.peers().some(el => el.address === address && el.port === port)) {