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/plugins/EntryUUIDPlugin.java |   14 --------------
 1 files changed, 0 insertions(+), 14 deletions(-)

diff --git a/opends/src/server/org/opends/server/plugins/EntryUUIDPlugin.java b/opends/src/server/org/opends/server/plugins/EntryUUIDPlugin.java
index dffb210..451d8e5 100644
--- a/opends/src/server/org/opends/server/plugins/EntryUUIDPlugin.java
+++ b/opends/src/server/org/opends/server/plugins/EntryUUIDPlugin.java
@@ -52,7 +52,6 @@
 import org.opends.server.types.LDIFImportConfig;
 import org.opends.server.types.operation.PreOperationAddOperation;
 
-import static org.opends.server.loggers.Debug.*;
 import static org.opends.server.messages.MessageHandler.*;
 import static org.opends.server.messages.PluginMessages.*;
 import static org.opends.server.util.StaticUtils.*;
@@ -71,11 +70,6 @@
 public final class EntryUUIDPlugin
        extends DirectoryServerPlugin
 {
-  /**
-   * The fully-qualified name of this class for debugging purposes.
-   */
-  private static final String CLASS_NAME =
-       "org.opends.server.plugins.EntryUUIDPlugin";
 
 
 
@@ -101,7 +95,6 @@
   {
     super();
 
-    assert debugConstructor(CLASS_NAME);
 
 
     // Get the entryUUID attribute type.  This needs to be done in the
@@ -136,9 +129,6 @@
                                      ConfigEntry configEntry)
          throws ConfigException
   {
-    assert debugEnter(CLASS_NAME, "initializePlugin",
-                      String.valueOf(pluginTypes),
-                      String.valueOf(configEntry));
 
 
     // Make sure that the plugin has been enabled for the appropriate types.
@@ -169,8 +159,6 @@
   public final LDIFPluginResult doLDIFImport(LDIFImportConfig importConfig,
                                              Entry entry)
   {
-    assert debugEnter(CLASS_NAME, "doLDIFImport",
-                      String.valueOf(importConfig), String.valueOf(entry));
 
 
     // See if the entry being imported already contains an entryUUID attribute.
@@ -211,8 +199,6 @@
   public final PreOperationPluginResult
        doPreOperation(PreOperationAddOperation addOperation)
   {
-    assert debugEnter(CLASS_NAME, "doPreOperation",
-                      String.valueOf(addOperation));
 
 
     // See if the entry being added already contains an entryUUID attribute.

--
Gitblit v1.10.0