(category: string, msg: string, ...details: unknown[])
| 55 | } |
| 56 | |
| 57 | public static warning(category: string, msg: string, ...details: unknown[]): void { |
| 58 | if (Logger._shouldLog(LogLevel.Warning)) { |
| 59 | Logger.log.warning(category, msg, ...details); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | public static info(category: string, msg: string, ...details: unknown[]): void { |
| 64 | if (Logger._shouldLog(LogLevel.Info)) { |
nothing calls this directly
no test coverage detected