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:
@ -1184,7 +1184,7 @@ class ConnectionState:
|
||||
try:
|
||||
await asyncio.wait_for(self.chunk_guild(guild), timeout=timeout)
|
||||
except asyncio.TimeoutError:
|
||||
_log.info('Somehow timed out waiting for chunks.')
|
||||
_log.warning('Somehow timed out waiting for chunks for guild ID %s.', guild.id)
|
||||
|
||||
if unavailable is False:
|
||||
self.dispatch('guild_available', guild)
|
||||
|
Reference in New Issue
Block a user