aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2021-12-02 00:11:16 +0000
committerGravatar GitHub <[email protected]>2021-12-02 00:11:16 +0000
commitebd90f95fca95035ac8c15c3a8e10e08ddad2413 (patch)
tree3b9ea9005a2e7a08f4d85857512dc56f4f21f957 /bot/constants.py
parentRemove unnecessary edits during pagination (diff)
parentMerge pull request #959 from onerandomusername/fix-hanukkah-command (diff)
Merge branch 'main' into patch-3
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 2b41b8a4..33bc8b61 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -135,6 +135,7 @@ class Client(NamedTuple):
prefix = environ.get("PREFIX", ".")
token = environ.get("BOT_TOKEN")
debug = environ.get("BOT_DEBUG", "true").lower() == "true"
+ file_logs = environ.get("FILE_LOGS", "false").lower() == "true"
github_bot_repo = "https://github.com/python-discord/sir-lancebot"
# Override seasonal locks: 1 (January) to 12 (December)
month_override = int(environ["MONTH_OVERRIDE"]) if "MONTH_OVERRIDE" in environ else None