summary refs log tree commit diff homepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Discord.ts2
-rw-r--r--src/DiscordWebhooks.ts4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/Discord.ts b/src/Discord.ts
index 087619b..1245145 100644
--- a/src/Discord.ts
+++ b/src/Discord.ts
@@ -75,7 +75,7 @@ class Discord {
       } else if (this.config.USE_WEBHOOKS) {
         // otherwise, ignore all webhooks that are not the same as this one
         if (this.webhookClient!.id === message.webhookId) {
-          if (this.config.DEBUG) console.log('[INFO] Ignoring webhook from self')
+          if (this.config.DEBUG) console.log('[DEBUG] Ignoring webhook from self')
           return
         }
       }
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) {