(message: string, properties?: Record<string, unknown>)
| 20 | export interface TaskLogger { |
| 21 | debug(message: string, properties?: Record<string, unknown>): void; |
| 22 | log(message: string, properties?: Record<string, unknown>): void; |
| 23 | info(message: string, properties?: Record<string, unknown>): void; |
| 24 | warn(message: string, properties?: Record<string, unknown>): void; |
| 25 | error(message: string, properties?: Record<string, unknown>): void; |
no outgoing calls
no test coverage detected