* Log an event (asynchronous implementation) * * With Segment removed the two remaining sinks are fire-and-forget, so this * just wraps the sync impl — kept to preserve the sink interface contract.
( eventName: string, metadata: LogEventMetadata, )
| 78 | * just wraps the sync impl — kept to preserve the sink interface contract. |
| 79 | */ |
| 80 | function logEventAsyncImpl( |
| 81 | eventName: string, |
| 82 | metadata: LogEventMetadata, |
| 83 | ): Promise<void> { |
| 84 | logEventImpl(eventName, metadata) |
| 85 | return Promise.resolve() |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Initialize analytics gates during startup. |
nothing calls this directly
no test coverage detected