64 lines
2.4 KiB
Python
64 lines
2.4 KiB
Python
import time
|
|
import colorama
|
|
|
|
colorama.init(autoreset=True)
|
|
|
|
class Logger:
|
|
@staticmethod
|
|
def log_error(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"{colorama.Fore.RED}[ ERROR@{now} ]: {message}{colorama.Style.RESET_ALL}")
|
|
|
|
@staticmethod
|
|
def log_info(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"{colorama.Fore.CYAN}[ INFO@{now} ]: {message}{colorama.Style.RESET_ALL}")
|
|
|
|
@staticmethod
|
|
def log_debug(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"[ DEBUG@{now} ]: {message}")
|
|
|
|
@staticmethod
|
|
def log_warning(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"{colorama.Fore.YELLOW}[ WARNING@{now} ]: {message}{colorama.Style.RESET_ALL}")
|
|
|
|
# yes we seriously needed this
|
|
@staticmethod
|
|
def log_obfuscation_info(message: str ,isenabled: bool) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
if isenabled:
|
|
print(f"[ INFO@{now} ]: {colorama.Fore.GREEN}{message}{colorama.Style.RESET_ALL}")
|
|
else:
|
|
print(f"[ INFO@{now} ]: {colorama.Fore.RED}{message}{colorama.Style.RESET_ALL}")
|
|
|
|
@staticmethod
|
|
def log_rust_usage(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"{colorama.Fore.GREEN}[ RUST@{now} ]: {message}{colorama.Style.RESET_ALL}")
|
|
|
|
# <!-- LUA -->
|
|
@staticmethod
|
|
def log_lua_info(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"{colorama.Fore.MAGENTA}[ LUA_INFO@{now} ]: {message}{colorama.Style.RESET_ALL}")
|
|
|
|
@staticmethod
|
|
def log_lua_error(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"{colorama.Fore.MAGENTA}[ LUA_ERROR@{now} ]: {message}{colorama.Style.RESET_ALL}")
|
|
|
|
@staticmethod
|
|
def log_lua_warning(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"{colorama.Fore.MAGENTA}[ LUA_WARNING@{now} ]: {message}{colorama.Style.RESET_ALL}")
|
|
|
|
@staticmethod
|
|
def log_lua_debug(message: str) -> None:
|
|
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
print(f"{colorama.Fore.MAGENTA}[ LUA_DEBUG@{now} ]: {message}{colorama.Style.RESET_ALL}")
|
|
|
|
|
|
|