MCPcopy Create free account
hub / github.com/EASY233/Finger / MY_LOGGER

Class MY_LOGGER

config/log.py:34–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32LOGGER.setLevel(LoggingLevel.WARNING)
33
34class MY_LOGGER:
35 def info(msg):
36 return LOGGER.log(LoggingLevel.SYSINFO, msg)
37
38 def error(msg):
39 return LOGGER.log(LoggingLevel.ERROR, msg)
40
41 def warning(msg):
42 return LOGGER.log(LoggingLevel.WARNING, msg)
43
44 def success(msg):
45 return LOGGER.log(LoggingLevel.SUCCESS, msg)
46
47

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected