diff options
author | Jim Jagielski <jim@apache.org> | 2014-06-03 12:14:22 +0000 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2014-06-03 12:14:22 +0000 |
commit | e58da534a47250292e1af36f05e938707a91bfd4 (patch) | |
tree | 48471c4ff94f8a00c751f40e2cec01e43accf1c0 /modules/metadata | |
parent | a0cc0a831731028eec2afffd5f0d68cc081c4473 (diff) | |
download | httpd-e58da534a47250292e1af36f05e938707a91bfd4.tar.gz |
Merge r1546730, r1583008, r1571369, r1552130, r1578760, r1592615, r1592632, r1595321, r1550302, r1550307, r1585435 from trunk:
fix whitespace in a debug message
s/comment/self-documenting/
normalize an ugly construct which somehow manages to return the correct value
This is annoying to see in a casual "LogLevel debug foo:traceX ..."
Use 'apr_table_setn' instead of 'apr_table_set' when possible in order to save memory.
Follow-up to r1592529:
Define default port for "scgi" schemes (as chosen by
mod_proxy_scgi) in a common location.
Suggested by: jailletc36
fix Doxygen markup error
Submitted by: jailletc36
Tweak a AP_DEBUG_ASSERT condition.
Valid index to use 'req_header_var_names' are 0...6
mod_auth_form: Add a debug message when the fields on a form are not
recognised.
mod_auth_form: Make the trace logging consistent through the notes, session
and form authentication steps.
mod_auth_form: update empty log tags.
Submitted by: trawick, covener, jailletc36, trawick, trawick, jailletc36, minfrin, minfrin, ylavic
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1599501 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/metadata')
-rw-r--r-- | modules/metadata/mod_headers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/metadata/mod_headers.c b/modules/metadata/mod_headers.c index 4608da7efe..210b2bbb57 100644 --- a/modules/metadata/mod_headers.c +++ b/modules/metadata/mod_headers.c @@ -870,7 +870,7 @@ static apr_status_t ap_headers_output_filter(ap_filter_t *f, headers_conf *dirconf = ap_get_module_config(f->r->per_dir_config, &headers_module); - ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, f->r->server, APLOGNO(01502) + ap_log_error(APLOG_MARK, APLOG_TRACE2, 0, f->r->server, APLOGNO(01502) "headers: ap_headers_output_filter()"); /* do the fixup */ |