diff --git a/commands/util/memberchannel.js b/commands/util/memberchannel.js index 09052729..3fc09881 100644 --- a/commands/util/memberchannel.js +++ b/commands/util/memberchannel.js @@ -22,10 +22,7 @@ module.exports = class MemberLogCommand extends Command { run(message, args) { const { channel } = args; - console.log(channel); message.guild.settings.set('memberLog', channel.name); - console.log(channel); - console.log(message.guild.settings.get('memberLog')); return message.say(`Member Log channel set to ${channel.name}.`); } };