We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6413834 commit fa6a531Copy full SHA for fa6a531
crates/llm-proxy/src/analytics.rs
@@ -57,7 +57,9 @@ impl AnalyticsReporter for AnalyticsClient {
57
);
58
event.generation_id.clone()
59
});
60
- let _ = self.event(distinct_id, payload.build()).await;
+ if let Err(e) = self.event(distinct_id, payload.build()).await {
61
+ tracing::warn!("analytics event error: {e}");
62
+ }
63
})
64
}
65
crates/transcribe-proxy/src/analytics.rs
@@ -42,7 +42,9 @@ impl SttAnalyticsReporter for AnalyticsClient {
42
43
fallback_id
44
45
46
47
48
49
50
0 commit comments