(outputChannelLog: LogFunction)
| 44 | * Following the pattern from src/extension/api.ts |
| 45 | */ |
| 46 | export function createDualLogger(outputChannelLog: LogFunction): LogFunction { |
| 47 | return (...args: unknown[]) => { |
| 48 | outputChannelLog(...args) |
| 49 | console.log(...args) |
| 50 | } |
| 51 | } |
no test coverage detected