From 3c522c6d58b8fb3cc393a165bbcc98041d94dbe0 Mon Sep 17 00:00:00 2001 From: destruc7i0n Date: Mon, 3 Jan 2022 12:57:18 -0500 Subject: added debug for webhook ratelimit --- src/DiscordWebhooks.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/DiscordWebhooks.ts') diff --git a/src/DiscordWebhooks.ts b/src/DiscordWebhooks.ts index fcdf57f..77f8575 100644 --- a/src/DiscordWebhooks.ts +++ b/src/DiscordWebhooks.ts @@ -34,6 +34,10 @@ class DiscordWebhooks { this.token = token this.webhookClient = new WebhookClient({ id, token }) + + if (this.config.DEBUG) { + this.webhookClient.on('rateLimit', (data) => console.log(`[DEBUG] Webhook is being rate limited. Timeout: ${data.timeout / 1000}s, Limit: ${data.limit}`)) + } } private parseDiscordWebhook (url: string) { -- cgit 1.4.1