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:
Rapptz
2022-08-15 10:21:36 -04:00
parent 0ec06f0ac5
commit 3802780f77
7 changed files with 20 additions and 20 deletions

View File

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