mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
02.20.2013 42dd3d9cfae9d58ab20d47671526c6a2aa7a58e3
Changed after comment by Ludo.

ConfigEntry.java:
Changed toString(), to only output the DN of the entry to prevent:
- dumping excessively large entries
- developers to inadvertently dump sensitive information in the logs
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/config/ConfigEntry.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/config/ConfigEntry.java
@@ -563,6 +563,6 @@
  @Override
  public String toString()
  {
    return entry.toString();
    return entry.getDN().toNormalizedString();
  }
}