From 136e158118295e80a74106ea59a0328ad6fbb034 Mon Sep 17 00:00:00 2001 From: Niko Storni Date: Tue, 19 Dec 2017 01:28:21 +0100 Subject: [PATCH] removed debug logging --- bot/modules/commandsV2.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/bot/modules/commandsV2.js b/bot/modules/commandsV2.js index 6c5a7f2..1394835 100644 --- a/bot/modules/commandsV2.js +++ b/bot/modules/commandsV2.js @@ -29,8 +29,6 @@ let checkForCommand = function(message) { message.content.toLowerCase().indexOf(command.toLowerCase()) >= 0 && commands[command].operation === "send" ) { - console.log("sending message"); - console.log(commands[command].bundle); message.channel.send("", new Discord.RichEmbed(commands[command].bundle)); } });