From 1f5674beec624d5524201b5fbac1aea036996bb5 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Tue, 04 Feb 2014 11:01:35 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1288 : Migrate I18n and logging support to i18n framework and SLF4J
---
opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/LocalOrRemotePanel.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/LocalOrRemotePanel.java b/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/LocalOrRemotePanel.java
index 2c27fc1..34ab47d 100644
--- a/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/LocalOrRemotePanel.java
+++ b/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/LocalOrRemotePanel.java
@@ -656,7 +656,7 @@
if (throwable != null)
{
- logger.debug(LocalizableMessage.raw("Error connecting: " + throwable, throwable));
+ logger.info(LocalizableMessage.raw("Error connecting: " + throwable, throwable));
if (isVersionException(throwable))
{
@@ -667,7 +667,7 @@
ApplicationTrustManager.Cause cause =
getInfo().getTrustManager().getLastRefusedCause();
- logger.debug(LocalizableMessage.raw("Certificate exception cause: "+cause));
+ logger.info(LocalizableMessage.raw("Certificate exception cause: "+cause));
UserDataCertificateException.Type excType = null;
if (cause == ApplicationTrustManager.Cause.NOT_TRUSTED)
{
@@ -858,7 +858,7 @@
if ((chain != null) && (authType != null) && (host != null))
{
- logger.debug(LocalizableMessage.raw("Accepting certificate presented by host "+host));
+ logger.info(LocalizableMessage.raw("Accepting certificate presented by host "+host));
getInfo().getTrustManager().acceptCertificate(chain, authType, host);
/* Simulate a click on the OK by calling in the okClicked method. */
SwingUtilities.invokeLater(new Runnable()
--
Gitblit v1.10.0