From 9bdd0113e23819b5f4013d9967abb92ac0d11fec Mon Sep 17 00:00:00 2001 From: Elnath Date: Sun, 3 Jan 2021 23:20:37 +0100 Subject: [PATCH] Logging bot's user name as info level instead of debug on startup --- VocalMaisBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VocalMaisBot.py b/VocalMaisBot.py index 4066f40..2516031 100755 --- a/VocalMaisBot.py +++ b/VocalMaisBot.py @@ -33,7 +33,7 @@ class VocalMaisBot(commands.Cog): @commands.Cog.listener() async def on_ready(self): 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