mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-06 09:56:09 +00:00
Change a lot of logging INFO calls to be less verbose
Some of the logs were only useful for debug scenarios, so they have been downgraded to DEBUG. Others were in INFO but supposed to be in WARNING so those were upgraded.
This commit is contained in:
@ -307,7 +307,7 @@ class VoiceClient(VoiceProtocol):
|
||||
|
||||
async def on_voice_server_update(self, data: VoiceServerUpdatePayload) -> None:
|
||||
if self._voice_server_complete.is_set():
|
||||
_log.info('Ignoring extraneous voice server update.')
|
||||
_log.warning('Ignoring extraneous voice server update.')
|
||||
return
|
||||
|
||||
self.token = data['token']
|
||||
|
Reference in New Issue
Block a user