Skip to content

Commit

Permalink
Merge pull request #1342 from vivganes/patch-log-history-file-location
Browse files Browse the repository at this point in the history
log the history file locations when set explicitly
  • Loading branch information
hcoles committed Aug 27, 2024
2 parents 46c2cfe + 9204f8a commit 4ba2c54
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,9 @@ private void determineHistory(final ReportOptions data) {
useHistoryFileInTempDir(data);
} else {
data.setHistoryInputLocation(this.mojo.getHistoryInputFile());
log.info("Will read history at " + data.getHistoryInputLocation());
data.setHistoryOutputLocation(this.mojo.getHistoryOutputFile());
log.info("Will write history at " + data.getHistoryOutputLocation());
}
}

Expand Down

0 comments on commit 4ba2c54

Please sign in to comment.