()
| 237 | [SESSION_LOG_ID]: entry.logId, |
| 238 | } as LogContext), |
| 239 | async flush() { |
| 240 | if (entry.state === 'closing') { |
| 241 | await entry.closePromise; |
| 242 | } else { |
| 243 | await entry.sink.flush(); |
| 244 | } |
| 245 | }, |
| 246 | async close() { |
| 247 | if (closed) return; |
| 248 | closed = true; |
no test coverage detected