diff --git a/index.js b/index.js index cf35bfe..419c8fb 100644 --- a/index.js +++ b/index.js @@ -110,6 +110,7 @@ const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith(' for (const file of commandFiles) { const filePath = path.join(commandsPath, file); const command = require(filePath); + log.DEBUG("Importing command: ", command.data.name); // Set a new item in the Collection // With the key as the command name and the value as the exported module client.commands.set(command.data.name, command);