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 dba270a commit ec58367Copy full SHA for ec58367
opengrok-indexer/src/main/java/org/opengrok/indexer/history/RepositoryInfo.java
@@ -449,9 +449,20 @@ public String toString() {
449
stringBuilder.append(",");
450
451
if (!isHistoryEnabled()) {
452
+ stringBuilder.append("history=off");
453
+ } else {
454
+ stringBuilder.append("history=on");
455
+ }
456
+
457
+ stringBuilder.append(",");
458
+ if (!isHistoryCacheEnabled()) {
459
stringBuilder.append("historyCache=off");
460
} else {
461
stringBuilder.append("historyCache=on,");
462
463
464
+ if (isHandleRenamedFiles()) {
465
466
stringBuilder.append("renamed=");
467
stringBuilder.append(this.isHandleRenamedFiles());
468
}
0 commit comments