mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00
Backport r1209766, r1210252, r1210284:
Add lots of unique tags to error log messages ssl_util.c: Downgrade some dynamic locking messages from level DEBUG to TRACE1-3 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1210287 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -122,13 +122,13 @@ static int xlate_name(request_rec *r)
|
||||
return DECLINED;
|
||||
}
|
||||
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "proxy_express: Enabled");
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01001) "proxy_express: Enabled");
|
||||
if (!sconf->dbmfile || (r->filename && strncmp(r->filename, "proxy:", 6) == 0)) {
|
||||
/* it should be go on as an internal proxy request */
|
||||
return DECLINED;
|
||||
}
|
||||
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01002)
|
||||
"proxy_express: Opening DBM file: %s (%s)",
|
||||
sconf->dbmfile, sconf->dbmtype);
|
||||
rv = apr_dbm_open_ex(&db, sconf->dbmtype, sconf->dbmfile, APR_DBM_READONLY,
|
||||
@ -138,7 +138,7 @@ static int xlate_name(request_rec *r)
|
||||
}
|
||||
|
||||
name = ap_get_server_name(r);
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01003)
|
||||
"proxy_express: looking for %s", name);
|
||||
key.dptr = (char *)name;
|
||||
key.dsize = strlen(key.dptr);
|
||||
@ -154,13 +154,13 @@ static int xlate_name(request_rec *r)
|
||||
return DECLINED;
|
||||
}
|
||||
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01004)
|
||||
"proxy_express: found %s -> %s", name, backend);
|
||||
r->filename = apr_pstrcat(r->pool, "proxy:", backend, r->uri, NULL);
|
||||
r->handler = "proxy-server";
|
||||
r->proxyreq = PROXYREQ_REVERSE;
|
||||
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01005)
|
||||
"proxy_express: rewritten as: %s", r->filename);
|
||||
|
||||
ralias = (struct proxy_alias *)dconf->raliases->elts;
|
||||
@ -182,7 +182,7 @@ static int xlate_name(request_rec *r)
|
||||
|
||||
/* Didn't find one... add it */
|
||||
if (!ralias) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01006)
|
||||
"proxy_express: adding PPR entry");
|
||||
ralias = apr_array_push(dconf->raliases);
|
||||
ralias->fake = "/";
|
||||
|
Reference in New Issue
Block a user