Skip to content

Commit 25dff7e

Browse files
author
Stephane Landelle
committed
Lower log level for markSupported not being supported, close AsyncHttpClient#275
1 parent da9e50a commit 25dff7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/main/java/com/ning/http/client/generators/InputStreamBodyGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public InputStreamBodyGenerator(InputStream inputStream) {
4343
if (inputStream.markSupported()) {
4444
inputStream.mark(0);
4545
} else {
46-
logger.warn("inputStream.markSupported() not supported. Some features will not works");
46+
logger.info("inputStream.markSupported() not supported. Some features will not works");
4747
}
4848
}
4949

0 commit comments

Comments
 (0)