You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2016/02/29 23:00:10 UTC

svn commit: r1732957 - in /httpd/httpd/trunk: docs/log-message-tags/next-number modules/proxy/mod_proxy_hcheck.c

Author: ylavic
Date: Mon Feb 29 22:00:09 2016
New Revision: 1732957

URL: http://svn.apache.org/viewvc?rev=1732957&view=rev
Log:
mod_proxy_hcheck: add missing APLOGNO()s.

Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c

Modified: httpd/httpd/trunk/docs/log-message-tags/next-number
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/log-message-tags/next-number?rev=1732957&r1=1732956&r2=1732957&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Mon Feb 29 22:00:09 2016
@@ -1 +1 @@
-3311
+3316

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c?rev=1732957&r1=1732956&r2=1732957&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c Mon Feb 29 22:00:09 2016
@@ -448,7 +448,7 @@ static proxy_worker *hc_get_hcworker(sct
     /* This *could* have changed via the Balancer Manager */
     /* TODO */
     if (hc->s->method != worker->s->method) {
-        ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ctx->s, APLOGNO()
+        ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ctx->s, APLOGNO(03311)
                      "Updating hc worker %s for %s://%s:%d",
                      wptr, worker->s->scheme, worker->s->hostname,
                      (int)port);
@@ -866,18 +866,18 @@ static apr_status_t hc_watchdog_callback
                 rv =  apr_thread_pool_create(&ctx->hctp, ctx->tpsize,
                                              ctx->tpsize, ctx->p);
                 if (rv != APR_SUCCESS) {
-                    ap_log_error(APLOG_MARK, APLOG_INFO, rv, s, APLOGNO()
+                    ap_log_error(APLOG_MARK, APLOG_INFO, rv, s, APLOGNO(03312)
                                  "apr_thread_pool_create() with %d threads failed",
                                  ctx->tpsize);
                     /* we can continue on without the threadpools */
                     ctx->hctp = NULL;
                 } else {
-                    ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, s, APLOGNO()
+                    ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, s, APLOGNO(03313)
                                  "apr_thread_pool_create() with %d threads succeeded",
                                  ctx->tpsize);
                 }
             } else {
-                ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, s, APLOGNO()
+                ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, s, APLOGNO(03314)
                              "Skipping apr_thread_pool_create()");
                 ctx->hctp = NULL;
             }
@@ -947,7 +947,7 @@ static apr_status_t hc_watchdog_callback
 #if HC_USE_THREADS
             rv =  apr_thread_pool_destroy(ctx->hctp);
             if (rv != APR_SUCCESS) {
-                ap_log_error(APLOG_MARK, APLOG_INFO, rv, s, APLOGNO()
+                ap_log_error(APLOG_MARK, APLOG_INFO, rv, s, APLOGNO(03315)
                              "apr_thread_pool_destroy() failed");
             }
 #endif