Skip to content

Commit

Permalink
fixup! Run conversion until # failed pages stabilizes
Browse files Browse the repository at this point in the history
  • Loading branch information
thvitt committed Nov 14, 2016
1 parent afd5402 commit 19b72f6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -238,7 +238,7 @@ public static void main(final String[] args) throws IOException {
logger.log(Level.WARNING, MessageFormat.format("The following {0} pages needed {1} tries to properly convert:\n {2}",
totalPages - failedPages, tries, Joiner.on("\n ").join(transcriptPages)));
} else {
logger.log(Level.INFO, MessageFormat.format("Failed to convert {0} of {1} pages at try {2}", failedPages, totalPages, try);
logger.log(Level.INFO, MessageFormat.format("Failed to convert {0} of {1} pages at try {2}", failedPages, totalPages, tries));
}
transcriptPages = failedConversions;
} while (failedPages > 0 && failedPages < totalPages);
Expand Down

0 comments on commit 19b72f6

Please sign in to comment.