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 2006/06/27 23:04:59 UTC

svn commit: r417586 - /tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c

Author: rjung
Date: Tue Jun 27 14:04:59 2006
New Revision: 417586

URL: http://svn.apache.org/viewvc?rev=417586&view=rev
Log:
Use ap_log_error instead of ap_log_rerror when we don't know, whether we are in a request context.

Modified:
    tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c

Modified: tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c?rev=417586&r1=417585&r2=417586&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Tue Jun 27 14:04:59 2006
@@ -2192,8 +2192,8 @@
                 }
                 rv = apr_global_mutex_unlock(jk_log_lock);
                 if (rv != APR_SUCCESS) {
-                    ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, NULL,
-                                  "apr_global_mutex_unlock(jk_log_lock) failed");
+                    ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL,
+                                 "apr_global_mutex_unlock(jk_log_lock) failed");
                     /* XXX: Maybe this should be fatal? */
                 }
             }



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