Skip to content

Commit

Permalink
Fix missing parameter in log
Browse files Browse the repository at this point in the history
  • Loading branch information
maddie480 authored Jun 21, 2024
1 parent fb813e6 commit f554413
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private void fillInGapsForIncrementalUpdate() throws IOException {

for (String mod : mods) {
if (fullList.contains(mod)) {
log.trace("File {} was updated incrementally already, skipping.");
log.trace("File {} was updated incrementally already, skipping.", mod);
continue;
}

Expand All @@ -175,7 +175,7 @@ private void fillInGapsForIncrementalUpdate() throws IOException {
}

// carry over all information from the old mod files database
log.trace("Copying all info for mod {}...");
log.trace("Copying all info for mod {}...", mod);
Files.createDirectories(Paths.get("modfilesdatabase_temp/" + mod).getParent());
FileUtils.copyDirectory(new File("modfilesdatabase/" + mod), new File("modfilesdatabase_temp/" + mod));
fullFileIdList.addAll((List<String>) fileInfo.get("Files"));
Expand Down

0 comments on commit f554413

Please sign in to comment.