Skip to content

Commit

Permalink
Add AutoEncryptionSettings#toString
Browse files Browse the repository at this point in the history
All values hidden

JAVA-4439
  • Loading branch information
jyemin committed Mar 22, 2022
1 parent 5e0ac85 commit 39150c4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions driver-core/src/main/com/mongodb/AutoEncryptionSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -359,4 +359,9 @@ private AutoEncryptionSettings(final Builder builder) {
this.extraOptions = notNull("extraOptions", builder.extraOptions);
this.bypassAutoEncryption = builder.bypassAutoEncryption;
}

@Override
public String toString() {
return "AutoEncryptionSettings{<hidden>}";
}
}

0 comments on commit 39150c4

Please sign in to comment.