diff options
author | Jeff Trawick <trawick@apache.org> | 2011-05-09 20:43:50 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2011-05-09 20:43:50 +0200 |
commit | 86d7dd25c4b5b4daec9581529a8a07b4dc74f5f3 (patch) | |
tree | 868fd5fdbd90b00258df30e56035f2f131d3461a /server/log.c | |
parent | rpm spec file: Remove requirement for /usr/share/magic.mime, we don't reference (diff) | |
download | apache2-86d7dd25c4b5b4daec9581529a8a07b4dc74f5f3.tar.xz apache2-86d7dd25c4b5b4daec9581529a8a07b4dc74f5f3.zip |
allow error log formatters to peek at the message format
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1101143 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | server/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/log.c b/server/log.c index 50d9cbcb3e..735fcf823a 100644 --- a/server/log.c +++ b/server/log.c @@ -1166,7 +1166,7 @@ static void log_error_core(const char *file, int line, int module_index, info.status = 0; info.using_syslog = (logf == NULL); info.startup = ((level & APLOG_STARTUP) == APLOG_STARTUP); - + info.format = fmt; while (!done) { apr_array_header_t *log_format; |