diff --git a/discord/gateway.py b/discord/gateway.py index a8593d697..3561033b8 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -420,7 +420,7 @@ class DiscordWebSocket(websockets.client.WebSocketClientProtocol): try: func = self._discord_parsers[event] except KeyError: - log.warning('Unknown event %s.', event) + log.debug('Unknown event %s.', event) else: func(data)