Skip to content

Commit 43c2069

Browse files
llingehennum
lling
authored and
ehennum
committed
#1291 Change log msg from warn to debug level. Added what maxDocBatchSize is in the msg.
1 parent c68390c commit 43c2069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marklogic-client-api/src/main/java/com/marklogic/client/datamovement/impl/QueryBatcherImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ public QueryBatcher withJobId(String jobId) {
313313
@Override
314314
public QueryBatcher withBatchSize(int docBatchSize) {
315315
if (docBatchSize > this.maxUriBatchSize) {
316-
logger.warn("docBatchSize is beyond maxDocBatchSize");
316+
logger.debug("docBatchSize is beyond maxDocBatchSize, which is {}.", this.maxUriBatchSize);
317317
}
318318
if (docBatchSize < 1) {
319319
throw new IllegalArgumentException("docBatchSize cannot be less than 1");

0 commit comments

Comments
 (0)