From 7c4b475cbcec4242eb0fdae2221d85d6d6465265 Mon Sep 17 00:00:00 2001 From: Miikka Virtanen Date: Sat, 31 Dec 2016 01:09:12 +0200 Subject: [PATCH] Debug --- index.js | 1 + 1 file changed, 1 insertion(+) 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; });