Skip to content

Commit

Permalink
fix: change log level for SQLException
Browse files Browse the repository at this point in the history
  • Loading branch information
zhu-xiaowei committed Aug 23, 2024
1 parent d43e628 commit caf41f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ public Uri saveEvent(final AnalyticsEvent event) {
try {
uri = clickstreamDBBase.insert(clickstreamDBBase.getContentUri(), generateContentValuesFromEvent(event));
} catch (SQLException error) {
LOG.info("SQLException: " + error.getMessage());
LOG.warn("SQLException: " + error.getMessage());
}
return uri;
}

0 comments on commit caf41f9

Please sign in to comment.