From 43625fd0e9c68f3f917a4d2ead2147536d0128b9 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Thu, 21 Jan 2016 18:47:04 +0000 Subject: [PATCH] Better description of trace git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1726062 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy_hcheck.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/proxy/mod_proxy_hcheck.c b/modules/proxy/mod_proxy_hcheck.c index 0bb32acc03..2054dd34a5 100644 --- a/modules/proxy/mod_proxy_hcheck.c +++ b/modules/proxy/mod_proxy_hcheck.c @@ -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) { -- 2.40.0