Skip to content

Commit 42d5ac7

Browse files
author
Vladimir Kotal
committed
fix spelling, formatting
1 parent a050007 commit 42d5ac7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -549,18 +549,17 @@ private void createCache(Repository repository, String sinceRevision) {
549549
if (repository.isWorking()) {
550550
Statistics elapsed = new Statistics();
551551

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

555555
try {
556556
repository.createCache(historyCache, sinceRevision);
557557
} catch (Exception e) {
558558
LOGGER.log(Level.WARNING,
559-
"An error occurred while creating cache for " + path + " ("
560-
+ type + ")", e);
559+
"An error occurred while creating cache for " + path + " (" + type + ")", e);
561560
}
562561

563-
elapsed.report(LOGGER, "Done historycache for " + path);
562+
elapsed.report(LOGGER, "Done history cache for " + path);
564563
} else {
565564
LOGGER.log(Level.WARNING,
566565
"Skipping creation of historycache of {0} repository in {1}: Missing SCM dependencies?",

0 commit comments

Comments
 (0)