From 19f2a77418b5ad07011134f11fbc58a54c856a55 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Mon, 14 May 2007 23:09:08 +0000
Subject: [PATCH] Fixed issue with the override-severity attribute in the error logger configuration entry. It now works as described in the documentation. Renamed all error and debug logging levels and severities to lower case with dashes. This conforms to the admin framework enum name  requirements. Fixed some incorrect debug category names in build.xml Added an "all" error log severity level to log all messages.

---
 opends/build.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opends/build.xml b/opends/build.xml
index 7507f64..f839d7a 100644
--- a/opends/build.xml
+++ b/opends/build.xml
@@ -1197,14 +1197,14 @@
     <echo message="      builds the server without the debug logging facility." />
     <echo message="      No debug logging messages will be included on test failures." />
     <echo message=""/>
-    <echo message="  -Dorg.opends.test.debug.target=org.opends.server.core:level=verbose,category=data_access"/>
+    <echo message="  -Dorg.opends.test.debug.target=org.opends.server.core:level=verbose,category=data"/>
     <echo message="      for example only include debug messages in the core"/>
     <echo message="      package that are related to data access and at the" />
     <echo message="      verbose level or higher. The syntax of this target" />
     <echo message="      definition is the same as the org.opends.server.debug.target.x" />
     <echo message="      property when starting OpenDS. " />
     <echo message="      Default debug target:"/>
-    <echo message="      org.opends.server:level=warning,category=caught|data|database_access|message|protocol" />
+    <echo message="      org.opends.server:level=warning,category=caught|data|database-access|message|protocol" />
     <echo message=""/>
     <echo message="  -Dtest.packages=org.opends.server.api"/>
     <echo message="      for example runs only the tests in the api package"/>
@@ -1272,7 +1272,7 @@
     <!-- This sets org.opends.test.debug.target if and only if its's not
          alreadly set. -->
     <condition property="org.opends.test.debug.target"
-               value="org.opends.server:level=warning,category=caught|data|database_access|message|protocol">
+               value="org.opends.server:level=warning,category=caught|data|database-access|message|protocol">
       <not>
         <isset property="org.opends.test.debug.target" />
       </not>

--
Gitblit v1.10.0