(message: string, ...args: unknown[])
| 23 | logForDebugging(format(message, ...args), { level: 'warn' }) |
| 24 | } |
| 25 | error(message: string, ...args: unknown[]): void { |
| 26 | logForDebugging(format(message, ...args), { level: 'error' }) |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | let cached: ComputerUseHostAdapter | undefined |
no test coverage detected