You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2007/12/17 16:01:33 UTC

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

Author: rjung
Date: Mon Dec 17 07:01:32 2007
New Revision: 604888

URL: http://svn.apache.org/viewvc?rev=604888&view=rev
Log:
Remove worker name from log message during
endpoint destruction. There's a chance, that
the worker name is already invalid.

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=604888&r1=604887&r2=604888&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c Mon Dec 17 07:01:32 2007
@@ -709,8 +709,8 @@
 
     if (JK_IS_DEBUG_LEVEL(l))
         jk_log(l, JK_LOG_DEBUG,
-        "(%s) closing endpoint with sd = %u %s",
-         ae->worker->name, ae->sd, ae->reuse? "" : "(socket shutdown)");
+        "closing endpoint with sd = %u %s",
+         ae->sd, ae->reuse? "" : "(socket shutdown)");
     if (IS_VALID_SOCKET(ae->sd)) {
         jk_shutdown_socket(ae->sd, l);
         ae->sd = JK_INVALID_SOCKET;



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