diff options
| author | 2020-03-26 14:50:57 -0400 | |
|---|---|---|
| committer | 2020-03-26 14:50:57 -0400 | |
| commit | 69ad34b76b24bdcfa7cc975a8f1c824590cfef6b (patch) | |
| tree | d0ffd531a8b358b0a6597616afc4574cb5cb1365 /bot/cogs/alias.py | |
| parent | Merge remote-tracking branch 'origin/zen-match-fix' into zen-match-fix (diff) | |
| parent | Merge pull request #842 from python-discord/bug/util/831/snekbox-reeval-parsing (diff) | |
Merge branch 'master' into zen-match-fix
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/alias.py | 4 |
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}"' ) |