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

Commit

Permalink
removed data anonymizer stack trace
Browse files Browse the repository at this point in the history
  • Loading branch information
chloe-zh committed Jan 27, 2021
1 parent 5c19cca commit 7b4562e
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 7b4562e

Please sign in to comment.