| 32 | LOGGER.setLevel(LoggingLevel.WARNING) |
| 33 | |
| 34 | class 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 |
nothing calls this directly
no outgoing calls
no test coverage detected