Skip to content

Commit d60211b

Browse files
author
Vladimir Kotal
committed
use correct format string
1 parent c2d6f78 commit d60211b

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
@@ -378,7 +378,7 @@ private void markProjectIndexed(Project project) {
378378
.request()
379379
.put(Entity.text(""));
380380
} catch (RuntimeException e) {
381-
LOGGER.log(Level.WARNING, String.format("Couldn''t notify the webapp that project {0} was indexed",
381+
LOGGER.log(Level.WARNING, String.format("Couldn''t notify the webapp that project %s was indexed",
382382
project), e);
383383
return;
384384
}

0 commit comments

Comments
 (0)