From 453ecb58bb5434df017e23cbbea991250c1adc65 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 20 Jan 2022 19:28:53 +0000 Subject: [PATCH] tweak logging --- src/lib/agent/PeerServer.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) {