diff --git a/backend/src/index.ts b/backend/src/index.ts index 587a515f..a2234733 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -384,9 +384,9 @@ connect().then(async () => { lowestGlobalRemaining = Math.min(lowestGlobalRemaining, (client as any).rest.globalRemaining); }, 100); setInterval(() => { - console.log("Lowest global remaining in the past 5 seconds:", lowestGlobalRemaining); + console.log("Lowest global remaining in the past 15 seconds:", lowestGlobalRemaining); lowestGlobalRemaining = Infinity; - }, 5000); + }, 15000); bot.initialize(); logger.info("Bot Initialized");