From 08655bdce7572d154c5e6796246b5ae47285b8a3 Mon Sep 17 00:00:00 2001 From: baz Date: Mon, 20 Nov 2023 22:07:19 +0000 Subject: [PATCH] Remove console.log --- events/interactionCreate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/interactionCreate.js b/events/interactionCreate.js index 84fb60b..7012f06 100644 --- a/events/interactionCreate.js +++ b/events/interactionCreate.js @@ -5,7 +5,7 @@ export const name = Events.InteractionCreate; export async function execute(interaction) { if (!interaction.isChatInputCommand()) return; - console.log(interaction); + // console.log(interaction); const command = interaction.client.commands.get(interaction.commandName);