From 3f609f6f2fc6ba65ea2f087826bd503e21ee54e2 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Wed, 8 Jun 2022 13:05:34 +0100 Subject: [PATCH] Don't output DEBUG messages to stdout by default --- app/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/log.py b/app/log.py index da8c534..44f17f0 100644 --- a/app/log.py +++ b/app/log.py @@ -59,7 +59,7 @@ def log_uncaught_exceptions(ex_cls, ex, tb): sys.excepthook = log_uncaught_exceptions -def DEBUG(msg: str, force_stderr: bool = True) -> None: +def DEBUG(msg: str, force_stderr: bool = False) -> None: """ Outupt a log message at level DEBUG. If force_stderr is True, output this message to stderr regardless of default stderr level