From: Dave B. <bla...@us...> - 2013-11-13 21:31:06
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/http/io In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23460/src/org/sblim/cimclient/internal/http/io Modified Files: Tag: Experimental ChunkedInputStream.java Log Message: 2709 Lower the level of the EOF message to FINE Index: ChunkedInputStream.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/http/io/ChunkedInputStream.java,v retrieving revision 1.3.2.12 retrieving revision 1.3.2.13 diff -u -d -r1.3.2.12 -r1.3.2.13 --- ChunkedInputStream.java 23 Feb 2013 15:35:16 -0000 1.3.2.12 +++ ChunkedInputStream.java 13 Nov 2013 21:31:02 -0000 1.3.2.13 @@ -26,6 +26,7 @@ * 3557283 2012-11-05 blaschke-oss Print full response when get EOF from CIMOM * 3601894 2013-01-23 blaschke-oss Enhance HTTP and CIM-XML tracing * 2621 2013-02-23 blaschke-oss Not all chunked input has trailers + * 2709 2013-11-13 blaschke-oss Lower the level of the EOF message to FINE */ package org.sblim.cimclient.internal.http.io; @@ -129,7 +130,7 @@ } if (total == -1) { LogAndTraceBroker.getBroker().trace( - Level.WARNING, + Level.FINE, "Unexpected EOF trying to read " + (this.iChunkSize < len ? this.iChunkSize : len) + " bytes from HTTP chunk with remaining length of " @@ -146,7 +147,7 @@ this.iTrailers.examineTrailer(this.iOrigin); } catch (IOException e) { LogAndTraceBroker.getBroker().trace( - Level.WARNING, + Level.FINE, "Unexpected EOF reading trailer, expected fields were " + this.iTrailerFields); throw new EOFException("Unexpected EOF reading trailer"); |