Set the debug status

This commit is contained in:
Mark Veidemanis 2022-05-02 16:32:33 +01:00
parent ba0b7e03fa
commit 620adbe123
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@ from settings import settings
log = logging.getLogger("util")
debug = False
# Color definitions
BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)
@ -60,6 +61,8 @@ def get_logger(name):
# Define the logger on the base class
log = logging.getLogger(name)
if debug:
log.setLevel(logging.DEBUG)
# Add the handler and stop it being silly and printing everything twice
log.addHandler(ch)