1
0
Fork 0

fixed logger

This commit is contained in:
Kim, Jimin 2022-01-27 21:30:05 +09:00
parent 59ab76c21b
commit 124932ffa5

View file

@ -1,15 +1,15 @@
# https://stackoverflow.com/a/33206814/12979111 # https://stackoverflow.com/a/33206814/12979111
RESET = "\e[0m" RESET = "\033[0m"
# style # style
BOLD = "\e[1m" BOLD = "\033[1m"
INVERT = "\e[7m" INVERT = "\033[7m"
# colors # colors
RED = "\e[91m" # actually light red RED = "\033[91m" # actually light red
GREEN = "\e[92m" # actually light green GREEN = "\033[92m" # actually light green
YELLOW = "\e[33m" YELLOW = "\033[33m"
def log_no_label(msg: str): def log_no_label(msg: str):