Skip to content

Commit 58be347

Browse files
author
Vladimir Kotal
committed
add missing log argument
1 parent bd4885a commit 58be347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ public void store(History history, Repository repository, String tillRevision) t
488488

489489
File histDataDir = new File(getRepositoryHistDataDirname(repository));
490490
if (!histDataDir.isDirectory() && !histDataDir.mkdirs()) {
491-
LOGGER.log(Level.WARNING, "cannot create history cache directory for XXX");
491+
LOGGER.log(Level.WARNING, "cannot create history cache directory for ''{0}''", histDataDir);
492492
}
493493

494494
/*

0 commit comments

Comments
 (0)