(category: string, msg: string, ...details: unknown[])
| 61 | } |
| 62 | |
| 63 | public static info(category: string, msg: string, ...details: unknown[]): void { |
| 64 | if (Logger._shouldLog(LogLevel.Info)) { |
| 65 | Logger.log.info(category, msg, ...details); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | public static error(category: string, msg: string, ...details: unknown[]): void { |
| 70 | if (Logger._shouldLog(LogLevel.Error)) { |
nothing calls this directly
no test coverage detected