Properly pad error/warning messages

This commit is contained in:
Mark Veidemanis 2022-04-04 19:17:57 +01:00
parent 6a620bd7bd
commit 37820306e8
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class ColoredFormatter(logging.Formatter):
def get_logger(name): def get_logger(name):
# Define the logging format # Define the logging format
FORMAT = "%(asctime)s %(levelname)s $BOLD%(name)13s$RESET - %(message)s" FORMAT = "%(asctime)s %(levelname)18s $BOLD%(name)13s$RESET - %(message)s"
COLOR_FORMAT = formatter_message(FORMAT, True) COLOR_FORMAT = formatter_message(FORMAT, True)
color_formatter = ColoredFormatter(COLOR_FORMAT) color_formatter = ColoredFormatter(COLOR_FORMAT)
# formatter = logging.Formatter( # formatter = logging.Formatter(