Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Removed stack trace when catches anonymizing data error #1014

Merged
merged 1 commit into from
Jan 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static String anonymizeData(String query) {
.replaceAll("false", "boolean_literal")
.replaceAll("[\\n][\\t]+", " ");
} catch (Exception e) {
LOG.error("Caught an exception when removing sensitive data", e);
LOG.warn("Caught an exception when anonymizing sensitive data");
resultQuery = query;
}
return resultQuery;
Expand Down