]> granicus.if.org Git - apache/commitdiff
Better description of trace
authorJim Jagielski <jim@apache.org>
Thu, 21 Jan 2016 18:47:04 +0000 (18:47 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 21 Jan 2016 18:47:04 +0000 (18:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1726062 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_hcheck.c

index 0bb32acc03d35ff2f1ea40153f7ea683a3c44666..2054dd34a54be626c93b5b500e2afce5ed6ca415 100644 (file)
@@ -720,7 +720,7 @@ static apr_status_t hc_check_http(sctx_t *ctx, apr_pool_t *p, proxy_worker *work
         if (ok > 0) {
             status = OK;
             ap_log_error(APLOG_MARK, APLOG_TRACE2, 0, ctx->s,
-                         "Success checking condition %s", worker->s->hcexpr);
+                         "Condition %s: passed", worker->s->hcexpr);
         } else if (ok < 0 || err) {
             status = !OK;
             ap_log_error(APLOG_MARK, APLOG_INFO, 0, ctx->s, APLOGNO(03301)
@@ -728,7 +728,7 @@ static apr_status_t hc_check_http(sctx_t *ctx, apr_pool_t *p, proxy_worker *work
                          err);
         } else {
             ap_log_error(APLOG_MARK, APLOG_TRACE2, 0, ctx->s,
-                         "Failure checking condition %s", worker->s->hcexpr);
+                         "Condition %s: failed", worker->s->hcexpr);
             status = !OK;
         }
     } else if (r->status < 200 || r->status > 399) {