Skip to content

Commit 9a79516

Browse files
author
Vladimir Kotal
committed
print whether renamed file handling is on for given repository
1 parent 83adc92 commit 9a79516

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/HistoryGuru.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,8 @@ private void createCache(Repository repository, String sinceRevision) {
567567
if (repository.isWorking()) {
568568
Statistics elapsed = new Statistics();
569569

570-
LOGGER.log(Level.INFO, "Creating historycache for {0} ({1})",
571-
new Object[]{path, type});
570+
LOGGER.log(Level.INFO, "Creating historycache for {0} ({1}) {2} renamed file handling",
571+
new Object[]{path, type, repository.isHandleRenamedFiles() ? "with" : "without"});
572572

573573
try {
574574
repository.createCache(historyCache, sinceRevision);

0 commit comments

Comments
 (0)