* Log an error message * * Use for error events that might still allow the application to continue.
(message: string, ...args: unknown[])
| 345 | * Use for error events that might still allow the application to continue. |
| 346 | */ |
| 347 | error(message: string, ...args: unknown[]) { |
| 348 | this.log(LogLevel.ERROR, message, ...args) |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | /** |
no test coverage detected