From 9b489bcbd166bdac5579a455579af80cf64307af Mon Sep 17 00:00:00 2001 From: Peter van Arkel Date: Thu, 12 Aug 2021 21:21:22 +0200 Subject: [PATCH] vanity commit --- cogs/admin.py | 2 +- jeeves.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cogs/admin.py b/cogs/admin.py index 32c18a6..f4f3a96 100644 --- a/cogs/admin.py +++ b/cogs/admin.py @@ -21,7 +21,7 @@ class Admin(commands.Cog): @commands.is_owner() async def clear(self, ctx, amount=1): await ctx.channel.purge(limit=amount) - log.warn(f'{ctx.message.author.name} cleared {amount} messages') + log.warn(f'{ctx.message.author} cleared {amount} messages') @commands.Cog.listener() diff --git a/jeeves.py b/jeeves.py index 4de70fc..8f39e40 100755 --- a/jeeves.py +++ b/jeeves.py @@ -27,14 +27,14 @@ e = discord.Embed() @commands.has_permissions(administrator=True) async def load(ctx, extension): bot.load_extension(f'cogs.{extension}') - log.info(f'{extension} module loaded') + log.info(f'{ctx.message.author} loaded the {extension} module') @bot.command() @commands.has_permissions(administrator=True) async def unload(ctx, extension): bot.unload_extension(f'cogs.{extension}') - log.info(f'{extension} module unloaded') + log.info(f'{ctx.message.author} unloaded the {extension} module') @bot.command() @@ -42,7 +42,7 @@ async def unload(ctx, extension): async def reload(ctx, extension): bot.unload_extension(f'cogs.{extension}') bot.load_extension(f'cogs.{extension}') - log.info(f'{extension} module reloaded') + log.info(f'{ctx.message.author} reloaded the {extension} module') @bot.event