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

Fabio Pistolesi
05.18.2015 f0a048d41a13eca4cba405da9403c2469ca3d1ea
opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/ExportJob.java
@@ -41,7 +41,7 @@
import org.opends.server.types.*;
import org.forgerock.opendj.ldap.ByteString;
import org.forgerock.i18n.slf4j.LocalizedLogger;
import static org.opends.messages.JebMessages.*;
import static org.opends.messages.BackendMessages.*;
/**
 * Export a JE backend to LDIF.
@@ -166,7 +166,7 @@
      rate = 1000f*exportedCount / totalTime;
    }
    logger.info(NOTE_JEB_EXPORT_FINAL_STATUS, exportedCount, skippedCount, totalTime/1000, rate);
    logger.info(NOTE_EXPORT_FINAL_STATUS, exportedCount, skippedCount, totalTime/1000, rate);
  }
@@ -302,7 +302,7 @@
      float rate = 1000f*deltaCount / deltaTime;
      logger.info(NOTE_JEB_EXPORT_PROGRESS_REPORT, latestCount, skippedCount, rate);
      logger.info(NOTE_EXPORT_PROGRESS_REPORT, latestCount, skippedCount, rate);
      previousCount = latestCount;
      previousTime = latestTime;