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 3db691b commit ccfc3b5Copy full SHA for ccfc3b5
opengrok-indexer/src/main/java/org/opengrok/indexer/index/IndexDatabase.java
@@ -226,7 +226,9 @@ public void run() {
226
try {
227
db.update(parallelizer);
228
} catch (Throwable e) {
229
- LOGGER.log(Level.SEVERE, "Problem updating lucene index database: ", e);
+ LOGGER.log(Level.SEVERE,
230
+ String.format("Problem updating index database in directory %s: ",
231
+ db.indexDirectory.getDirectory()), e);
232
}
233
234
});
0 commit comments