(message: string, context?: Record<string, unknown>)
| 1 | export interface Logger { |
| 2 | debug(message: string, context?: Record<string, unknown>): void; |
| 3 | info(message: string, context?: Record<string, unknown>): void; |
| 4 | warn(message: string, context?: Record<string, unknown>): void; |
| 5 | error(message: string, context?: Record<string, unknown>): void; |
| 6 | } |
no outgoing calls