Logging bot's user name as info level instead of debug on startup
This commit is contained in:
parent
2fe4142cd6
commit
9bdd0113e2
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue