From 455897cc245b67d929f409a93cfa7106e835cc1f Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Thu, 01 Mar 2007 03:27:06 +0000
Subject: [PATCH] This removes old debug logging framework method calls that are going to be automatically instrumented by AspectJ. Non instrumented debug method calls are updated to use the new debug framework methods. However, the new debug logging framework is not yet active as the Aspects are not weaved in. After this revision, debug logging will be disabled in the server until the new AOP framework is complete.
---
opends/src/server/org/opends/server/config/ConfigConstants.java | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/config/ConfigConstants.java b/opends/src/server/org/opends/server/config/ConfigConstants.java
index 3a30ab5..c81b283 100644
--- a/opends/src/server/org/opends/server/config/ConfigConstants.java
+++ b/opends/src/server/org/opends/server/config/ConfigConstants.java
@@ -3885,5 +3885,27 @@
*/
public static final String ATTR_TASK_ADDSCHEMAFILE_FILENAME =
NAME_PREFIX_TASK + "schema-file-name";
+
+
+ /**
+ * The name of the attribute in a debug target configuration for a debug
+ * logger that specifies the scope of the debug target.
+ */
+ public static final String ATTR_LOGGER_DEBUG_SCOPE =
+ NAME_PREFIX_TASK + "debug-scope";
+
+ /**
+ * The name of the attribute in a logger configuration that spcifies the
+ * log level.
+ */
+ public static final String ATTR_LOGGER_LEVEL =
+ NAME_PREFIX_TASK + "log-level";
+
+ /**
+ * The name of the attribute in a logger configuration that specifies
+ * whether to asyncornously writes log records to disk.
+ */
+ public static final String ATTR_LOGGER_ASYNC_WRITE =
+ NAME_PREFIX_TASK + "async-write";
}
--
Gitblit v1.10.0