aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-01-25 12:15:50 +0300
committerGravatar ChrisJL <[email protected]>2022-01-26 03:39:23 +0000
commit335620341046e3b7be547ac9f18d25d1fb9bec55 (patch)
tree394dcf6be9e7bbe69302e1b4b2d54174c9adf29f /bot/constants.py
parentClean Up Constants File (diff)
Reduce AOC Logging Output
The AOC cog produces a lot of large logs very frequently which have minimal value, causing the logs to be significantly harder to navigate. Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 7e7ee749..d39f7361 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -55,7 +55,7 @@ class AdventOfCodeLeaderboard:
def session(self) -> str:
"""Return either the actual `session` cookie or the fallback cookie."""
if self.use_fallback_session:
- log.info(f"Returning fallback cookie for board `{self.id}`.")
+ log.trace(f"Returning fallback cookie for board `{self.id}`.")
return AdventOfCode.fallback_session
return self._session