Set the debug status

master
Mark Veidemanis 2 years ago
parent ba0b7e03fa
commit 620adbe123
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

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

Loading…
Cancel
Save