mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
31.00.2008 2fdd5ae36e4712f2f663e660160a24833079d857
Fix for issue 3099 (dsreplication initialize Error during the initialization message)
Mark a log message as info if the task completed successfully.
1 files modified
4 ■■■ changed files
opends/src/guitools/org/opends/guitools/replicationcli/ReplicationCliMain.java 4 ●●● patch | view | raw | blame | history
opends/src/guitools/org/opends/guitools/replicationcli/ReplicationCliMain.java
@@ -6489,9 +6489,9 @@
                serverDisplay, lastLogMsg, state, serverDisplay);
          }
          LOG.log(Level.WARNING, "Processed errorMsg: "+errorMsg);
          if (helper.isCompletedWithErrors(state))
          {
            LOG.log(Level.WARNING, "Processed errorMsg: "+errorMsg);
            if (displayProgress)
            {
              println(errorMsg);
@@ -6500,6 +6500,7 @@
          else if (!helper.isSuccessful(state) ||
              helper.isStoppedByError(state))
          {
            LOG.log(Level.WARNING, "Processed errorMsg: "+errorMsg);
            ApplicationException ae = new ApplicationException(
                ReturnCode.APPLICATION_ERROR, errorMsg,
                null);
@@ -6524,6 +6525,7 @@
              printProgress(INFO_SUFFIX_INITIALIZED_SUCCESSFULLY.get());
              printlnProgress();
            }
            LOG.log(Level.INFO, "Processed msg: "+errorMsg);
            LOG.log(Level.INFO, "Initialization completed successfully.");
          }
        }