Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit a927932

Browse files
authored
Merge pull request #193 from marklogic/feature/qbv-logging
Added some logging to QBV generation
2 parents 8a5f38f + f476b8e commit a927932

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/com/marklogic/client/ext/schemasloader/impl/QbvDocumentFileProcessor.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ public void processQbvFiles() {
9393
}
9494

9595
private void processQbvFile(DocumentFile qbvFile) {
96+
if (logger.isInfoEnabled()) {
97+
logger.info(format("Generating Query-Based View for file: %s", qbvFile.getFile().getName()));
98+
}
9699
ServerEvaluationCall call = getServerEvaluationCall(qbvFile);
97100
if (call != null) {
98101
StringHandle handleString = new StringHandle();

0 commit comments

Comments
 (0)