From acb5609d0395e70b54ae8ff95a715b172e0f4969 Mon Sep 17 00:00:00 2001 From: MrMasrozYTLIVE <61359286+MrMasrozYTLIVE@users.noreply.github.com> Date: Mon, 10 Jun 2024 20:57:32 +0300 Subject: [PATCH] Its not working :sob: time to debug --- chatBot/includes/client.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/chatBot/includes/client.js b/chatBot/includes/client.js index 33ffb91..69e2ae6 100644 --- a/chatBot/includes/client.js +++ b/chatBot/includes/client.js @@ -20,10 +20,12 @@ class Client extends EventEmitter { }); this.swarm.on('update', () => { - console.log(`Peers count: ${this.swarm.connections.size} (${this.swarm.peers.size})`); + console.log(`Connections count: ${this.swarm.connections.size} / Peers count: ${this.swarm.peers.size}`); this.swarm.peers.forEach((peer, peerInfo) => { - console.log(`Peer ${peer} is in topic(s) ${[peerInfo.topics].filter(topic => topic).map(topic => topic.toString('hex'))}`); + console.log([peer]); + console.log([peerInfo.topics]); + console.log(`Peer ${[peer]} is in topic(s) ${[peerInfo.topics].filter(topic => topic).map(topic => topic.toString('hex'))}`); }); }); }