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/quicksetup/org/opends/quicksetup/util/FileManager.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/util/FileManager.java b/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/util/FileManager.java
index dbdce2c..388029d 100644
--- a/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/util/FileManager.java
+++ b/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/util/FileManager.java
@@ -386,7 +386,7 @@
         application.notifyListeners(application.getFormattedWarning(
                 INFO_FILE_DOES_NOT_EXIST.get(file)));
       }
-      logger.debug(LocalizableMessage.raw("file '" + file + "' does not exist"));
+      logger.info(LocalizableMessage.raw("file '" + file + "' does not exist"));
     }
   }
 
@@ -489,7 +489,7 @@
                               objectFile.getAbsolutePath(),
                               destination.getAbsolutePath())));
             }
-            logger.debug(LocalizableMessage.raw("copying file '" +
+            logger.info(LocalizableMessage.raw("copying file '" +
                     objectFile.getAbsolutePath() + "' to '" +
                     destination.getAbsolutePath() + "'"));
             FileInputStream fis = null;
@@ -551,7 +551,7 @@
                     errMsg, null);
           }
         } else {
-          logger.debug(LocalizableMessage.raw("Ignoring file '" +
+          logger.info(LocalizableMessage.raw("Ignoring file '" +
                   objectFile.getAbsolutePath() + "' since '" +
                   destination.getAbsolutePath() + "' already exists"));
           if ((application != null) && application.isVerbose()) {
@@ -610,7 +610,7 @@
                           file.getAbsolutePath())));
         }
       }
-      logger.debug(LocalizableMessage.raw("deleting " +
+      logger.info(LocalizableMessage.raw("deleting " +
               (isFile ? " file " : " directory ") +
               file.getAbsolutePath()));
 

--
Gitblit v1.10.0