(category: string, msg: string, ...details: unknown[])
| 67 | } |
| 68 | |
| 69 | public static error(category: string, msg: string, ...details: unknown[]): void { |
| 70 | if (Logger._shouldLog(LogLevel.Error)) { |
| 71 | Logger.log.error(category, msg, ...details); |
| 72 | } |
| 73 | } |
| 74 | } |
nothing calls this directly
no test coverage detected