Skip to content

Commit 1a5d1c6

Browse files
committed
improve progress logging
1 parent 98edade commit 1a5d1c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/index/IndexDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1767,7 +1767,7 @@ private void indexParallel(String dir, IndexDownArgs args) {
17671767
ObjectPool<Ctags> ctagsPool = parallelizer.getCtagsPool();
17681768

17691769
Map<Boolean, List<IndexFileWork>> bySuccess = null;
1770-
try (Progress progress = new Progress(LOGGER, dir, worksCount)) {
1770+
try (Progress progress = new Progress(LOGGER, String.format("indexing '%s'", dir), worksCount)) {
17711771
bySuccess = parallelizer.getForkJoinPool().submit(() ->
17721772
args.works.parallelStream().collect(
17731773
Collectors.groupingByConcurrent((x) -> {

0 commit comments

Comments
 (0)