Author: markt Date: Wed Apr 22 11:04:43 2015 New Revision: 1675328 URL: http://svn.apache.org/r1675328 Log: https://bz.apache.org/bugzilla/show_bug.cgi?id=57749 Drop logging to debug now we know the root cause (concurrent close)
Modified: tomcat/tc8.0.x/trunk/java/org/apache/coyote/http11/InternalNio2OutputBuffer.java Modified: tomcat/tc8.0.x/trunk/java/org/apache/coyote/http11/InternalNio2OutputBuffer.java URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/coyote/http11/InternalNio2OutputBuffer.java?rev=1675328&r1=1675327&r2=1675328&view=diff ============================================================================== --- tomcat/tc8.0.x/trunk/java/org/apache/coyote/http11/InternalNio2OutputBuffer.java (original) +++ tomcat/tc8.0.x/trunk/java/org/apache/coyote/http11/InternalNio2OutputBuffer.java Wed Apr 22 11:04:43 2015 @@ -212,7 +212,7 @@ public class InternalNio2OutputBuffer ex @Override public void failed(Throwable exc, ByteBuffer[] attachment) { if (socket == null) { - log.warn(sm.getString("iob.nio2.nullSocket"), exc); + log.debug(sm.getString("iob.nio2.nullSocket"), exc); // Can't do anything else with a null socket return; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org