diff --git a/backend/src/utils/hotfixMessageFetch.ts b/backend/src/utils/hotfixMessageFetch.ts index b0859fd6..5810f6cc 100644 --- a/backend/src/utils/hotfixMessageFetch.ts +++ b/backend/src/utils/hotfixMessageFetch.ts @@ -7,6 +7,8 @@ const queue = new Queue(); export function hotfixMessageFetch(channel: TextChannel | ThreadChannel, messageId: string): Promise { return queue.add(async () => { await sleep(3000); + // tslint:disable-next-line:no-console + console.trace(`Fetching message id ${messageId} from channel ${channel.id}`); return channel.messages.fetch(messageId); }); }