(message: string, context?: Record<string, unknown>)
| 169 | */ |
| 170 | export interface Logger { |
| 171 | debug(message: string, context?: Record<string, unknown>): void; |
| 172 | warn(message: string, context?: Record<string, unknown>): void; |
| 173 | error(message: string, context?: Record<string, unknown>): void; |
| 174 | } |