From 5efe0c64071f59b000a3b4cab1b5d31503c9a940 Mon Sep 17 00:00:00 2001 From: arescrimson Date: Tue, 26 Dec 2023 22:51:03 -0800 Subject: [PATCH] Update interactionCreate.js Updated autocomplete logging error --- events/interactionCreate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/interactionCreate.js b/events/interactionCreate.js index b58c2c8..6ada5ac 100644 --- a/events/interactionCreate.js +++ b/events/interactionCreate.js @@ -35,7 +35,7 @@ module.exports = { try { await command.autocomplete(interaction); } catch (error) { - console.error(error); + console.error('Interaction error', error); } } }