Skip to content
This repository was archived by the owner on Feb 13, 2022. It is now read-only.

Commit f920e3a

Browse files
committed
Make debug mode true by default
1 parent 1d55b88 commit f920e3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bot/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ class ThreadArchiveTimes(Enum):
287287
CHUNKED_FIND_CHUNK_SIZE = 200
288288

289289
# Debug mode
290-
DEBUG_MODE: bool = os.environ.get("DEBUG", "false").lower() == "true"
290+
DEBUG_MODE: bool = os.environ.get("DEBUG", "true").lower() == "true"
291291

292292
# Bot replies
293293
NEGATIVE_REPLIES = [

0 commit comments

Comments
 (0)