From 002113cd39e592835ec178bb3127e785773fb37a Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 01 Jun 2007 01:11:08 +0000
Subject: [PATCH] Update the access logger so that it will not suppress internal operations when running the test cases.
---
opendj-sdk/opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java b/opendj-sdk/opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java
index 0bd133c..3169ae4 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java
@@ -73,14 +73,16 @@
* to the console when the server starts up.
*
* @param writer The text writer where the message will be written to.
+ * @param suppressInternal Indicates whether to suppress internal operations.
* @return The instance of the text error log publisher that will print
* all messages to standard out.
*/
public static TextAccessLogPublisher
- getStartupTextAccessPublisher(TextWriter writer)
+ getStartupTextAccessPublisher(TextWriter writer, boolean suppressInternal)
{
TextAccessLogPublisher startupPublisher = new TextAccessLogPublisher();
startupPublisher.writer = writer;
+ startupPublisher.suppressInternalOperations = suppressInternal;
return startupPublisher;
}
--
Gitblit v1.10.0