diff --git a/Client/controllers/botController.js b/Client/controllers/botController.js index ae62246..c353668 100644 --- a/Client/controllers/botController.js +++ b/Client/controllers/botController.js @@ -20,6 +20,7 @@ function getGuilds(req) { */ function getChannels(guildId, req) { const guild = req.discordClient.guilds.cache.get(guildId); + log.DEBUG("Found Guild channels with guild", guild.channels, guild); return guild.channels; }