(category: string, msg: string, ...details: unknown[])
| 49 | } |
| 50 | |
| 51 | public static debug(category: string, msg: string, ...details: unknown[]): void { |
| 52 | if (Logger._shouldLog(LogLevel.Debug)) { |
| 53 | Logger.log.debug(category, msg, ...details); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | public static warning(category: string, msg: string, ...details: unknown[]): void { |
| 58 | if (Logger._shouldLog(LogLevel.Warning)) { |
nothing calls this directly
no test coverage detected