diff --git a/src/events/interactionCreate.ts b/src/events/interactionCreate.ts index d2aac06..f1d4dd0 100644 --- a/src/events/interactionCreate.ts +++ b/src/events/interactionCreate.ts @@ -12,8 +12,8 @@ export default { commandFile.default.run(client, interaction); commandFile.uses ? commandFile.uses++ : commandFile.uses = 1; } catch (error){ - console.log(`An error occured while running command "${commandFile.name}"`, error, error.stack); - return interaction.reply('An error occured while executing that command.'); + console.log(`An error occurred while running command "${interaction.commandName} ${interaction.options.getSubcommand(false) ?? ''}"`, error, error.stack); + return interaction.reply('An error occurred while executing that command.'); } } }