]> granicus.if.org Git - apache/commitdiff
mod_proxy_hcheck: add missing APLOGNO()s.
authorYann Ylavic <ylavic@apache.org>
Mon, 29 Feb 2016 22:00:09 +0000 (22:00 +0000)
committerYann Ylavic <ylavic@apache.org>
Mon, 29 Feb 2016 22:00:09 +0000 (22:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1732957 13f79535-47bb-0310-9956-ffa450edef68

docs/log-message-tags/next-number
modules/proxy/mod_proxy_hcheck.c

index 37023f76951aaf696beca80480a0dc035f1d6de5..f0bf34362d0cc68672af214a4eeaba9103d9804b 100644 (file)
@@ -1 +1 @@
-3311
+3316
index db17daef57c2cd6d788ffa0f58b2961527fa6718..bd1b9401749d57ca5c266d60930c082aa99e41c4 100644 (file)
@@ -448,7 +448,7 @@ static proxy_worker *hc_get_hcworker(sctx_t *ctx, proxy_worker *worker,
     /* 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(int state, void *data,
                 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(int state, void *data,
 #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