* Log an error
(message: string, data?: unknown)
| 95 | * Log an error |
| 96 | */ |
| 97 | error(message: string, data?: unknown): void { |
| 98 | debugLog(`[${this.component}] ERROR: ${message}`, data) |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | /** |
nothing calls this directly
no test coverage detected