Skip to content

Commit

Permalink
Dimmed debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
martastain committed May 3, 2021
1 parent 013d830 commit de29da8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nxtools/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def __init__(self, user=""):

if has_colorama:
self.formats_colorama = {
DEBUG : Style.BRIGHT + Fore.BLACK + "{timestamp}" + Style.BRIGHT + Fore.BLUE + "{type}" + "{user} {message}" + Style.RESET_ALL,
DEBUG : Style.BRIGHT + Fore.BLACK + "{timestamp}" + Style.RESET_ALL + Fore.BLUE + "{type}" + "{user} {message}" + Style.RESET_ALL,
INFO : Style.BRIGHT + Fore.BLACK + "{timestamp}" + Style.NORMAL + Fore.WHITE + "{type}" + Fore.RESET + "{user} {message}" + Style.RESET_ALL,
WARNING : Style.BRIGHT + Fore.BLACK + "{timestamp}" + Style.NORMAL + Fore.YELLOW + "{type}" + Fore.RESET + "{user} {message}" + Style.RESET_ALL,
ERROR : Style.BRIGHT + Fore.BLACK + "{timestamp}" + Style.NORMAL + Fore.RED + "{type}" + Fore.RESET + "{user} {message}" + Style.RESET_ALL,
Expand Down

0 comments on commit de29da8

Please sign in to comment.