Don't output DEBUG messages to stdout by default

This commit is contained in:
Keith Edmunds 2022-06-08 13:05:34 +01:00
parent 1888c7f00d
commit 3f609f6f2f

View File

@ -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