(category: string, message: string, data?: unknown)
| 28 | } |
| 29 | |
| 30 | debug(category: string, message: string, data?: unknown): void { |
| 31 | this.writeLog('DEBUG', category, message, data) |
| 32 | } |
| 33 | |
| 34 | info(category: string, message: string, data?: unknown): void { |
| 35 | this.writeLog('INFO', category, message, data) |
no test coverage detected