Browse Source

Stop logging rate limit messages

pull/668/head
Gabe Kangas 4 years ago
parent
commit
cf54be4b1d
  1. 2
      core/chat/client.go

2
core/chat/client.go

@ -121,7 +121,7 @@ func (c *Client) handleClientSocketError(err error) {
func (c *Client) passesRateLimit() bool { func (c *Client) passesRateLimit() bool {
if !c.rateLimiter.Allow() { 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 return false
} }

Loading…
Cancel
Save