chore: comment out console log in limiter

This commit is contained in:
Ben Allfree 2025-05-26 05:22:13 +00:00
parent 69aae66229
commit 3b6cf119e7

View File

@ -33,7 +33,7 @@ const MultiChannelLimiter = () => {
setInterval(() => { setInterval(() => {
for (const [channel, limiter] of channels.entries()) { for (const [channel, limiter] of channels.entries()) {
if (limiter.empty()) { if (limiter.empty()) {
console.log(`Deleting empty limiter for ${channel}`) // console.log(`Deleting empty limiter for ${channel}`)
channels.delete(channel) channels.delete(channel)
} }
} }