moved the files around added demo examples and fixed a bunch of stuff!
This commit is contained in:
@@ -37,3 +37,21 @@ class Logger:
|
||||
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}")
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user