Logging bot's user name as info level instead of debug on startup

This commit is contained in:
Elnath 2021-01-03 23:20:37 +01:00
parent 2fe4142cd6
commit 9bdd0113e2
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class VocalMaisBot(commands.Cog):
@commands.Cog.listener() @commands.Cog.listener()
async def on_ready(self): async def on_ready(self):
logger.info("Connected and ready!") logger.info("Connected and ready!")
logger.debug(f"Logged as {self.bot.user}") logger.info(f"Logged in as {self.bot.user}")
self.owner = (await self.bot.application_info()).owner self.owner = (await self.bot.application_info()).owner