aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2020-02-24 01:15:52 +1000
committerGravatar scragly <[email protected]>2020-02-24 01:15:52 +1000
commit470adee6e9069782189e803752fa2d9ee08465e4 (patch)
tree11587e1ee3564453960897dee2755cbe68d98b3c
parentMerge pull request #741 from Denayder/information-refactor (diff)
Reduce log level of tag cooldown notice.
-rw-r--r--bot/cogs/tags.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/cogs/tags.py b/bot/cogs/tags.py
index 54a51921c..b6360dfae 100644
--- a/bot/cogs/tags.py
+++ b/bot/cogs/tags.py
@@ -116,8 +116,10 @@ class Tags(Cog):
if _command_on_cooldown(tag_name):
time_left = Cooldowns.tags - (time.time() - self.tag_cooldowns[tag_name]["time"])
- log.warning(f"{ctx.author} tried to get the '{tag_name}' tag, but the tag is on cooldown. "
- f"Cooldown ends in {time_left:.1f} seconds.")
+ log.info(
+ f"{ctx.author} tried to get the '{tag_name}' tag, but the tag is on cooldown. "
+ f"Cooldown ends in {time_left:.1f} seconds."
+ )
return
await self._get_tags()