aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/alias.py
diff options
context:
space:
mode:
authorGravatar Eivind Teig <[email protected]>2020-03-30 11:54:50 +0200
committerGravatar GitHub <[email protected]>2020-03-30 11:54:50 +0200
commitfb2de332c8b95c04e1ce7b41cd8336b594d13524 (patch)
tree18b44c5b1ad5cea36a8f179fae9c301263e61b11 /bot/cogs/alias.py
parentAdd tests for `HushDurationConverter`. (diff)
parentMerge pull request #849 from ks129/webhook-match (diff)
Merge branch 'master' into hush-cog
Diffstat (limited to '')
-rw-r--r--bot/cogs/alias.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py
index 0b800575f..9001e18f0 100644
--- a/bot/cogs/alias.py
+++ b/bot/cogs/alias.py
@@ -26,9 +26,9 @@ class Alias (Cog):
log.debug(f"{cmd_name} was invoked through an alias")
cmd = self.bot.get_command(cmd_name)
if not cmd:
- return log.warning(f'Did not find command "{cmd_name}" to invoke.')
+ return log.info(f'Did not find command "{cmd_name}" to invoke.')
elif not await cmd.can_run(ctx):
- return log.warning(
+ return log.info(
f'{str(ctx.author)} tried to run the command "{cmd_name}"'
)