Skip to content

Commit

Permalink
additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Kastelic committed Oct 6, 2023
1 parent edc6651 commit 650e566
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ private void copyFileIfMissing(File archive, File destinationDirectory) throws F
boolean fileEqual = fileExists && Files.equal(archive, destinationFile);

if (!fileExists || !fileEqual) {
logger.info("Copying {} into {}.", archive, destinationDirectory);
fileCopier.copy(archive.getPath(), destinationDirectory.getPath());
}
} catch (IOException e) {
Expand Down

0 comments on commit 650e566

Please sign in to comment.