dsreplication - security: removed password to avoid accidental logging
Thanks Ludo for reporting!
| | |
| | | @Override |
| | | public String toString() |
| | | { |
| | | // do not add password to avoid accidental logging |
| | | return getClass().getSimpleName() |
| | | + "(hostPort=" + hostPort |
| | | + ", bindDn=" + bindDn |
| | | + ", bindPassword=" + pwd |
| | | + ", replicationPort=" + replicationPort |
| | | + ", secureReplication=" + secureReplication |
| | | + ", configureReplicationServer=" + configureReplicationServer |
| | |
| | | |
| | | String fieldsToString() |
| | | { |
| | | return "baseDNs=" + baseDNs + ", adminUid=" + adminUid + ", adminPwd=" + adminPwd; |
| | | // do not add password to avoid accidental logging |
| | | return "baseDNs=" + baseDNs + ", adminUid=" + adminUid; |
| | | } |
| | | } |