From cf54be4b1da15fb898e59663a437611b3d28454a Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 26 Jan 2021 19:52:32 -0800 Subject: [PATCH] Stop logging rate limit messages --- core/chat/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/chat/client.go b/core/chat/client.go index 3218f5b82..9c8d50b6a 100644 --- a/core/chat/client.go +++ b/core/chat/client.go @@ -121,7 +121,7 @@ func (c *Client) handleClientSocketError(err error) { func (c *Client) passesRateLimit() bool { if !c.rateLimiter.Allow() { - log.Warnln("Client", c.ClientID, "has exceeded the messaging rate limiting thresholds.") + log.Debugln("Client", c.ClientID, "has exceeded the messaging rate limiting thresholds.") return false }