mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono-python.git
synced 2024-09-27 18:56:20 +08:00
11 lines
410 B
Python
11 lines
410 B
Python
from logger.log import Log, LogLevels
|
|
from logger.log_appender import output
|
|
|
|
|
|
def trace (msg:str) : output(Log(msg, LogLevels.trace))
|
|
def debug (msg:str) : output(Log(msg, LogLevels.debug))
|
|
def info (msg:str) : output(Log(msg, LogLevels.info))
|
|
def warn(msg:str) : output(Log(msg, LogLevels.warn))
|
|
def error (msg:str) : output(Log(msg, LogLevels.error))
|
|
def fatal (msg:str) : output(Log(msg, LogLevels.fatal))
|