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 1b93561 commit 4be1179Copy full SHA for 4be1179
opengrok-indexer/src/main/java/org/opengrok/indexer/index/Indexer.java
@@ -332,6 +332,12 @@ public static void main(String[] argv) {
332
System.exit(1);
333
}
334
335
+ if (!subFiles.isEmpty() && configFilename != null) {
336
+ LOGGER.log(Level.WARNING, "The collection of entries to process is non empty ({0}), seems like " +
337
+ "the intention is to perform per project reindex, however the -W option is used. " +
338
+ "This will likely not work.", subFiles);
339
+ }
340
+
341
Metrics.updateSubFiles(subFiles);
342
343
// If the webapp is running with a config that does not contain
0 commit comments