Author: markt Date: Wed Jan 4 14:01:16 2017 New Revision: 1777316 URL: http://svn.apache.org/viewvc?rev=1777316&view=rev Log: Back-port log message fixes to reduce diff to 7.0.x
Modified: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Modified: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1777316&r1=1777315&r2=1777316&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original) +++ tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Wed Jan 4 14:01:16 2017 @@ -1833,7 +1833,7 @@ public class NioEndpoint extends Abstrac } if ( sd.length <= 0 && sc.getOutboundRemaining()<=0) { if (log.isDebugEnabled()) { - log.debug("Send file complete for:"+sd.fileName); + log.debug("Send file complete for: "+sd.fileName); } attachment.setSendfileData(null); try { @@ -1859,7 +1859,7 @@ public class NioEndpoint extends Abstrac } } else { if (log.isDebugEnabled()) { - log.debug("OP_WRITE for sendfile:" + sd.fileName); + log.debug("OP_WRITE for sendfile: " + sd.fileName); } if (event) { add(attachment.getChannel(),SelectionKey.OP_WRITE); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org