summaryrefslogtreecommitdiffstats
path: root/server/log.c
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2010-10-06 21:14:44 +0200
committerStefan Fritsch <sf@apache.org>2010-10-06 21:14:44 +0200
commit2e4a59c5e139a7432fce70efb23b9b31d94553ef (patch)
tree4c195eaf84185c4bba083d3b621610d13869abab /server/log.c
parentFix a segfault when tmpfiles are encountered while cleaning. (diff)
downloadapache2-2e4a59c5e139a7432fce70efb23b9b31d94553ef.tar.xz
apache2-2e4a59c5e139a7432fce70efb23b9b31d94553ef.zip
add %v and %V to ErrorLogFormat
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1005208 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/log.c')
-rw-r--r--server/log.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/server/log.c b/server/log.c
index 028eaecbad..f2036a4e1b 100644
--- a/server/log.c
+++ b/server/log.c
@@ -737,6 +737,25 @@ static int log_apr_status(const ap_errorlog_info *info, const char *arg,
return len;
}
+static int log_server_name(const ap_errorlog_info *info, const char *arg,
+ char *buf, int buflen)
+{
+ if (info->r)
+ return cpystrn(buf, ap_get_server_name((request_rec *)info->r), buflen);
+
+ return 0;
+}
+
+static int log_virtual_host(const ap_errorlog_info *info, const char *arg,
+ char *buf, int buflen)
+{
+ if (info->s)
+ return cpystrn(buf, info->s->server_hostname, buflen);
+
+ return 0;
+}
+
+
static int log_table_entry(const apr_table_t *table, const char *name,
char *buf, int buflen)
{
@@ -867,6 +886,8 @@ AP_DECLARE(void) ap_register_log_hooks(apr_pool_t *p)
ap_register_errorlog_handler(p, "P", log_pid, 0);
ap_register_errorlog_handler(p, "t", log_ctime, 0);
ap_register_errorlog_handler(p, "T", log_tid, 0);
+ ap_register_errorlog_handler(p, "v", log_virtual_host, 0);
+ ap_register_errorlog_handler(p, "V", log_server_name, 0);
}
/*