You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2015/10/23 00:27:11 UTC

svn commit: r1710108 - /tomcat/trunk/java/org/apache/tomcat/util/net/SecureNio2Channel.java

Author: markt
Date: Thu Oct 22 22:27:11 2015
New Revision: 1710108

URL: http://svn.apache.org/viewvc?rev=1710108&view=rev
Log:
Remove temporary debug statements from r1710107

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/net/SecureNio2Channel.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/SecureNio2Channel.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/SecureNio2Channel.java?rev=1710108&r1=1710107&r2=1710108&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/net/SecureNio2Channel.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/SecureNio2Channel.java Thu Oct 22 22:27:11 2015
@@ -209,7 +209,6 @@ public class SecureNio2Channel extends N
         SSLEngineResult handshake = null;
 
         while (!handshakeComplete) {
-            log.debug("Handshake status [" + handshakeStatus + "]" );
             switch (handshakeStatus) {
                 case NOT_HANDSHAKING: {
                     //should never happen
@@ -302,7 +301,6 @@ public class SecureNio2Channel extends N
                 }
                 default: throw new IllegalStateException(sm.getString("channel.nio.ssl.invalidStatus", handshakeStatus));
             }
-            log.debug("Handshake complete [" + handshakeComplete + "]" );
         }
         //return 0 if we are complete, otherwise recurse to process the task
         return handshakeComplete ? 0 : handshakeInternal(async);
@@ -461,7 +459,6 @@ public class SecureNio2Channel extends N
         netOutBuffer.flip();
         //set the status
         handshakeStatus = result.getHandshakeStatus();
-        log.debug("Result [" + result + "]");
         return result;
     }
 
@@ -498,7 +495,6 @@ public class SecureNio2Channel extends N
             cont = result.getStatus() == SSLEngineResult.Status.OK &&
                    handshakeStatus == HandshakeStatus.NEED_UNWRAP;
         } while (cont);
-        log.debug("Result [" + result + "]");
         return result;
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org