summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2013-09-24 17:57:07 +0200
committerJeff Trawick <trawick@apache.org>2013-09-24 17:57:07 +0200
commit6a062fcc848fb1e0265f033e0affd25f9b639d4d (patch)
tree5fcc13eae0dc15d14f0edbdaa72f2002f1d8dc6e /server
parentChange the default value of AuthLDAPMaxSubGroupDepth, so sub-group searching (diff)
downloadapache2-6a062fcc848fb1e0265f033e0affd25f9b639d4d.tar.xz
apache2-6a062fcc848fb1e0265f033e0affd25f9b639d4d.zip
Suppress formatting of startup messages written to the console when
ErrorLogFormat is used. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1525931 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/log.c b/server/log.c
index b3157369f5..5f3b4ed984 100644
--- a/server/log.c
+++ b/server/log.c
@@ -1150,7 +1150,7 @@ static void log_error_core(const char *file, int line, int module_index,
* prepare and log one line
*/
- if (log_format) {
+ if (log_format && !info.startup) {
len += do_errorlog_format(log_format, &info, errstr + len,
MAX_STRING_LEN - len,
&errstr_start, &errstr_end, fmt, args);