Skip to content

Commit

Permalink
fix(gms): lower telemetry error log level (datahub-project#8860)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Sep 20, 2023
1 parent 47b7e29 commit 35eb194
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ public void emitAnalyticsEvent(@Nonnull final JsonNode event) {
try {
_mixpanelAPI.sendMessage(_mixpanelMessageBuilder.event(getClientId(), eventType, sanitizedEvent));
} catch (IOException e) {
log.error("Failed to send event to Mixpanel", e);
log.info("Failed to send event to Mixpanel; this does not affect the functionality of the application");
log.debug("Failed to send event to Mixpanel", e);
}
}

Expand Down

0 comments on commit 35eb194

Please sign in to comment.