We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdeb367 commit 304f539Copy full SHA for 304f539
opengrok-indexer/src/main/java/org/opengrok/indexer/index/IndexDatabase.java
@@ -378,8 +378,8 @@ private void markProjectIndexed(Project project) {
378
.request()
379
.put(Entity.text(""));
380
} catch (RuntimeException e) {
381
- LOGGER.log(Level.WARNING, "Couldn''t notify the webapp that project {0} was indexed: {1}",
382
- new Object[] {project, e});
+ LOGGER.log(Level.WARNING, String.format("Couldn''t notify the webapp that project {0} was indexed",
+ project), e);
383
return;
384
}
385
0 commit comments