From 4783adc14c2d6b96260052d3b634eafa500c6ddf 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.
---
opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciException.java | 12 ------------
1 files changed, 0 insertions(+), 12 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciException.java b/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciException.java
index 4556ca7..753af2f 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciException.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciException.java
@@ -26,8 +26,6 @@
*/
package org.opends.server.authorization.dseecompat;
-import static org.opends.server.loggers.Debug.debugConstructor;
-import static org.opends.server.loggers.Debug.debugEnter;
/**
* The AciException class defines an exception that may be thrown
@@ -37,11 +35,6 @@
*/
public class AciException extends Exception {
- /**
- * The fully-qualified name of this class for debugging purposes.
- */
- private static final String CLASS_NAME =
- "org.opends.server.authorization.dseecompat.AciException";
/**
* The serial version identifier required to satisfy the compiler because this
@@ -72,8 +65,6 @@
*/
public AciException(int messageID, String message) {
super(message);
- assert debugConstructor(CLASS_NAME, String.valueOf(messageID),
- String.valueOf(message));
this.messageID = messageID;
}
@@ -89,8 +80,6 @@
public AciException(int messageID, String message, Throwable cause) {
super(message, cause);
- assert debugConstructor(CLASS_NAME, String.valueOf(message),
- String.valueOf(cause));
this.messageID = messageID;
}
@@ -101,7 +90,6 @@
* @return The message ID for this exception.
*/
public int getMessageID() {
- assert debugEnter(CLASS_NAME, "getMessageID");
return messageID;
}
}
--
Gitblit v1.10.0