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 d5a2f6f commit 3f45276Copy full SHA for 3f45276
marklogic-client-api/src/main/java/com/marklogic/client/datamovement/impl/QueryBatcherImpl.java
@@ -313,7 +313,7 @@ public QueryBatcher withJobId(String jobId) {
313
@Override
314
public QueryBatcher withBatchSize(int docBatchSize) {
315
if (docBatchSize > this.maxUriBatchSize) {
316
- logger.warn("docBatchSize is beyond maxDocBatchSize");
+ logger.debug("docBatchSize is beyond maxDocBatchSize, which is {}.", this.maxUriBatchSize);
317
}
318
if (docBatchSize < 1) {
319
throw new IllegalArgumentException("docBatchSize cannot be less than 1");
0 commit comments