Author: markt Date: Tue Feb 17 16:17:00 2015 New Revision: 1660433 URL: http://svn.apache.org/r1660433 Log: Remove debug messages. They weren't helping.
Modified: tomcat/trunk/java/org/apache/coyote/AbstractProtocol.java Modified: tomcat/trunk/java/org/apache/coyote/AbstractProtocol.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/AbstractProtocol.java?rev=1660433&r1=1660432&r2=1660433&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/AbstractProtocol.java (original) +++ tomcat/trunk/java/org/apache/coyote/AbstractProtocol.java Tue Feb 17 16:17:00 2015 @@ -601,18 +601,12 @@ public abstract class AbstractProtocol<S SocketStatus status) { if (wrapper == null) { // Nothing to do. Socket has been closed. - if (getLog().isDebugEnabled()) { - getLog().debug("Wrapper is null. Closing connection."); - } return SocketState.CLOSED; } S socket = wrapper.getSocket(); if (socket == null) { // Nothing to do. Socket has been closed. - if (getLog().isDebugEnabled()) { - getLog().debug("Socket is null. Closing connection."); - } return SocketState.CLOSED; } @@ -620,9 +614,6 @@ public abstract class AbstractProtocol<S if (status == SocketStatus.DISCONNECT && processor == null) { // Nothing to do. Endpoint requested a close and there is no // longer a processor associated with this socket. - if (getLog().isDebugEnabled()) { - getLog().debug("SocketStatus.DISCONNECT && processor == null. Closing connection."); - } return SocketState.CLOSED; } @@ -645,9 +636,6 @@ public abstract class AbstractProtocol<S do { if (status == SocketStatus.CLOSE_NOW) { processor.errorDispatch(); - if (getLog().isDebugEnabled()) { - getLog().debug("SocketStatus.CLOSE_NOW. Closing connection."); - } state = SocketState.CLOSED; } else if (dispatches != null) { // Associate the processor with the connection as @@ -751,9 +739,6 @@ public abstract class AbstractProtocol<S } else { release(wrapper, processor, false); } - if (getLog().isDebugEnabled()) { - getLog().debug("Closing connection."); - } } return state; } catch(java.net.SocketException e) { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org