You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2008/04/11 09:03:23 UTC

svn commit: r647068 - /tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c

Author: mturk
Date: Fri Apr 11 00:03:21 2008
New Revision: 647068

URL: http://svn.apache.org/viewvc?rev=647068&view=rev
Log:
Don't log ajp_connection_tcp_send_message failure as ERROR. This can be part of normal operation caused by cping/cpong. We are later logging that either as INFO in handle_cping_cpong or as ERROR in (ab)normal response

Modified:
    tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c

Modified: tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c?rev=647068&r1=647067&r2=647068&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c Fri Apr 11 00:03:21 2008
@@ -1039,7 +1039,7 @@
         return JK_TRUE;
     }
     ae->last_errno = errno;
-    jk_log(l, JK_LOG_ERROR,
+    jk_log(l, JK_LOG_INFO,
            "sendfull returned %d (errno=%d)", rc, ae->last_errno);
     ae->sd = JK_INVALID_SOCKET;
 



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