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

Commit 61c9743

Browse files
committed
Turning out logging to info
1 parent e3eef0c commit 61c9743

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
group=com.marklogic
22
javadocsDir=../gh-pages-marklogic-java/javadocs
3-
version=3.2-79
3+
version=3.2.0

src/main/java/com/marklogic/client/ext/file/DefaultDocumentFileReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ public List<DocumentFile> readDocumentFiles(String... paths) {
5454
throw new RuntimeException(format("IO error while walking file tree at path: %s", path), ie);
5555
}
5656
} else {
57-
if (logger.isWarnEnabled()) {
58-
logger.warn("Path does not exist, so not reading files from it: " + path);
57+
if (logger.isInfoEnabled()) {
58+
logger.info("Path does not exist, so not reading files from it: " + path);
5959
}
6060
}
6161
}

0 commit comments

Comments
 (0)