Method
logAnalysisServerTerminate
(exitCode: number, sessionDurationMs: number)
Source from the content-addressed store, hash-verified
| 379 | } |
| 380 | |
| 381 | public logAnalysisServerTerminate(exitCode: number, sessionDurationMs: number) { |
| 382 | const customData: Partial<AnalyticsData> = { |
| 383 | sessionDurationSeconds: sessionDurationMs / 1000, |
| 384 | exitCode, |
| 385 | }; |
| 386 | this.event(AnalyticsEvent.AnalysisServer_Terminate, customData); |
| 387 | } |
| 388 | |
| 389 | public logErrorFlutterDaemonTimeout(requestMethod: string) { |
| 390 | const customData: Partial<AnalyticsData> = { |
Tested by
no test coverage detected