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