Skip to content

Commit

Permalink
[Fix](Load)Audit logs avoid recording certain sensitive information
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinKirs committed Aug 2, 2024
1 parent 4b58cee commit 075951b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,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<>(properties, "=", true, false, true));
sb.append(")");
}
return sb.toString();
Expand Down

0 comments on commit 075951b

Please sign in to comment.