From 418da8740574e77d41626f42ecd64bed3eb322e4 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 06 Jul 2007 21:53:15 +0000
Subject: [PATCH] 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/src/server/org/opends/server/loggers/TextAccessLogPublisher.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java b/opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java
index 02e6295..37f182d 100644
--- a/opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java
+++ b/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
     {

--
Gitblit v1.10.0