From 486ffa6d0abfa0b91dc7ab22ee71758b5eecfb88 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 26 Sep 2007 18:57:15 +0000
Subject: [PATCH] Fix for 2306: configure replication encryption on or off in dsreplication and setup-gui
---
opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java b/opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java
index 9626672..2ffd756 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java
@@ -580,6 +580,34 @@
Utils.getCommandLineMaxLineWidth()));
out.flush();
}
+ LOG.log(Level.INFO, msg);
+ }
+
+ /**
+ * Displays a progress message in the error output.
+ * @param msg the error message to be displayed.
+ */
+ protected void printProgressMessageNoWrap(String msg)
+ {
+ if (!isQuiet())
+ {
+ out.print(msg);
+ out.flush();
+ }
+ LOG.log(Level.INFO, msg);
+ }
+
+ /**
+ * Displays a progress message in the error output.
+ * @param msg the error message to be displayed.
+ */
+ protected void printProgressMessageNoWrap(Message msg)
+ {
+ if (!isQuiet())
+ {
+ out.print(msg);
+ out.flush();
+ }
LOG.log(Level.INFO, msg.toString());
}
--
Gitblit v1.10.0