diff --git a/index.js b/index.js index a42aee6..e0e1dac 100644 --- a/index.js +++ b/index.js @@ -222,6 +222,7 @@ function getModmailChannel(user, allowCreate = true) { // Try to find a matching channel let candidate = modMailGuild.channels.find(c => { const info = getModmailChannelInfo(c); + console.log(`testing ${info.userId} === ${user.id}`); return info && info.userId === user.id; });