Exemple #1
0
 /**
  * Dump this log as a text files, intended for debugging purpose only.
  *
  * @param dumpDirectory Directory that will contains log files with text format and ".txt"
  *     extensions
  * @throws ChangelogException If an error occurs during dump
  */
 void dumpAsTextFile(File dumpDirectory) throws ChangelogException {
   for (LogFile<K, V> logFile : logFiles.values()) {
     logFile.dumpAsTextFile(new File(dumpDirectory, logFile.getFile().getName() + ".txt"));
   }
 }