Skip to content

Commit

Permalink
[Fix](Load)Audit logs avoid recording certain sensitive information a…
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinKirs committed Aug 2, 2024
1 parent 2425730 commit 835644f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ public Object apply(DataDescription dataDescription) {

if (properties != null && !properties.isEmpty()) {
sb.append("\nPROPERTIES (");
sb.append(new PrintableMap<String, String>(properties, "=", true, false));
sb.append(new PrintableMap<String, String>(properties, "=", true, false, true));
sb.append(")");
}
return sb.toString();
Expand Down

0 comments on commit 835644f

Please sign in to comment.