From: Jim Jagielski Date: Thu, 21 Jan 2016 18:47:04 +0000 (+0000) Subject: Better description of trace X-Git-Tag: 2.5.0-alpha~2319 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43625fd0e9c68f3f917a4d2ead2147536d0128b9;p=apache Better description of trace git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1726062 13f79535-47bb-0310-9956-ffa450edef68 --- 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) {