| 9 | * Keeps services Temporal-agnostic while providing structured logging. |
| 10 | */ |
| 11 | export interface ActivityLogger { |
| 12 | info(message: string, attrs?: Record<string, unknown>): void; |
| 13 | warn(message: string, attrs?: Record<string, unknown>): void; |
| 14 | error(message: string, attrs?: Record<string, unknown>): void; |
| 15 | } |
no outgoing calls
no test coverage detected