(
provider_type: &str,
operation: LifecycleOperation,
outcome: TelemetryOutcome,
)
| 2287 | } |
| 2288 | |
| 2289 | fn emit_provider_lifecycle( |
| 2290 | provider_type: &str, |
| 2291 | operation: LifecycleOperation, |
| 2292 | outcome: TelemetryOutcome, |
| 2293 | ) { |
| 2294 | let provider_profile = telemetry_provider_profile(provider_type); |
| 2295 | emit_provider_profile_lifecycle(provider_profile, operation, outcome); |
| 2296 | } |
| 2297 | |
| 2298 | fn emit_provider_profile_lifecycle( |
| 2299 | provider_profile: TelemetryProviderProfile, |
no test coverage detected