(message: string, ...args: unknown[])
| 65 | */ |
| 66 | export class ConsoleLogger implements ILogger { |
| 67 | debug(message: string, ...args: unknown[]): void { |
| 68 | console.debug(message, ...args); |
| 69 | } |
| 70 | info(message: string, ...args: unknown[]): void { |
| 71 | console.info(message, ...args); |
| 72 | } |