diff --git a/chatBot/bot.js b/chatBot/bot.js index e89d03d..cb9162d 100644 --- a/chatBot/bot.js +++ b/chatBot/bot.js @@ -39,7 +39,7 @@ loadCommands().then(commands => { // We use Event Emitter here to handle new messages bot.on('onMessage', (peer, message) => { - console.log(message); + // console.log(message); console.log(`Message received from ${message.peerName}@${message.topic} at ${new Date(message.timestamp).toLocaleTimeString()}: ${message.message}`); diff --git a/chatBot/includes/Client.js b/chatBot/includes/Client.js index d5f6866..1ec2200 100644 --- a/chatBot/includes/Client.js +++ b/chatBot/includes/Client.js @@ -90,7 +90,8 @@ class Client extends EventEmitter { sendMessage(message) { if(!(message instanceof Message)) return console.log(`message does not extend Message class (TextMessage, FileMessage, AudioMessage).`, message); - console.log('Bot name:', this.botName); + // console.log('Bot name:', this.botName); + console.log("Sending message:", message); const data = message.toJsonString(); const peers = [...this.swarm.connections]; for (const peer of peers) peer.write(data);