Author: markt Date: Tue Feb 17 14:21:04 2015 New Revision: 1660388 URL: http://svn.apache.org/r1660388 Log: Fix formatting of debug method
Modified: tomcat/trunk/java/org/apache/tomcat/util/net/Nio2Endpoint.java Modified: tomcat/trunk/java/org/apache/tomcat/util/net/Nio2Endpoint.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/Nio2Endpoint.java?rev=1660388&r1=1660387&r2=1660388&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/net/Nio2Endpoint.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/net/Nio2Endpoint.java Tue Feb 17 14:21:04 2015 @@ -768,7 +768,7 @@ public class Nio2Endpoint extends Abstra public void completed(Integer nBytes, SocketWrapperBase<Nio2Channel> attachment) { boolean notify = false; if (log.isDebugEnabled()) { - log.debug("Socket: [ + " + attachment + "], Interest: [" + readInterest + "]"); + log.debug("Socket: [" + attachment + "], Interest: [" + readInterest + "]"); } synchronized (readCompletionHandler) { if (nBytes.intValue() < 0) { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org