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

neil_a_wilson
06.53.2007 418da8740574e77d41626f42ecd64bed3eb322e4
Update the default access logger so that it will include an attrs="ALL" element
in the case that the client did not explicitly request any attributes to
return and therefore defaulted to returning all user attributes.

OpenDS Issue Number: 1908
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java
@@ -1258,7 +1258,7 @@
    LinkedHashSet<String> attrs = searchOperation.getAttributes();
    if ((attrs == null) || attrs.isEmpty())
    {
      buffer.append("\"");
      buffer.append("\" attrs=\"ALL\"");
    }
    else
    {