Stop logging rate limit messages

This commit is contained in:
Gabe Kangas 2021-01-26 19:52:32 -08:00
parent ca66ea6588
commit cf54be4b1d

View file

@ -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
}