diff options
author | Stefan Fritsch <sf@apache.org> | 2011-12-03 00:02:04 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-12-03 00:02:04 +0100 |
commit | 92e366007c7936f44eef10f88a7042bc5a663c05 (patch) | |
tree | 491eaace700df8e1a764c7dfbe25335d497d0dcb /server/main.c | |
parent | mod_proxy: Make ap_proxy_retry_worker() into an optional function. Allows (diff) | |
download | apache2-92e366007c7936f44eef10f88a7042bc5a663c05.tar.xz apache2-92e366007c7936f44eef10f88a7042bc5a663c05.zip |
Add lots of unique tags to error log messages
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1209766 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/main.c')
-rw-r--r-- | server/main.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/server/main.c b/server/main.c index 778e812169..204d66c794 100644 --- a/server/main.c +++ b/server/main.c @@ -480,8 +480,8 @@ int main(int argc, const char * const argv[]) error = ap_setup_prelinked_modules(process); if (error) { - ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_EMERG, 0, NULL, "%s: %s", - ap_server_argv0, error); + ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_EMERG, 0, NULL, APLOGNO(00012) + "%s: %s", ap_server_argv0, error); destroy_and_exit_process(process, 1); } @@ -632,7 +632,7 @@ int main(int argc, const char * const argv[]) if (ap_run_pre_config(pconf, plog, ptemp) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0, - NULL, "Pre-configuration failed"); + NULL, APLOGNO(00013) "Pre-configuration failed"); destroy_and_exit_process(process, 1); } @@ -650,7 +650,7 @@ int main(int argc, const char * const argv[]) if (ap_run_check_config(pconf, plog, ptemp, ap_server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0, - NULL, "Configuration check failed"); + NULL, APLOGNO(00014) "Configuration check failed"); destroy_and_exit_process(process, 1); } @@ -689,13 +689,13 @@ int main(int argc, const char * const argv[]) if ( ap_run_open_logs(pconf, plog, ptemp, ap_server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, - 0, NULL, "Unable to open logs"); + 0, NULL, APLOGNO(00015) "Unable to open logs"); destroy_and_exit_process(process, 1); } if ( ap_run_post_config(pconf, plog, ptemp, ap_server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0, - NULL, "Configuration Failed"); + NULL, APLOGNO(00016) "Configuration Failed"); destroy_and_exit_process(process, 1); } @@ -732,7 +732,7 @@ int main(int argc, const char * const argv[]) if (ap_run_pre_config(pconf, plog, ptemp) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, - 0, NULL, "Pre-configuration failed"); + 0, NULL, APLOGNO(00017) "Pre-configuration failed"); destroy_and_exit_process(process, 1); } @@ -751,20 +751,20 @@ int main(int argc, const char * const argv[]) if (ap_run_check_config(pconf, plog, ptemp, ap_server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0, - NULL, "Configuration check failed"); + NULL, APLOGNO(00018) "Configuration check failed"); destroy_and_exit_process(process, 1); } apr_pool_clear(plog); if (ap_run_open_logs(pconf, plog, ptemp, ap_server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, - 0, NULL, "Unable to open logs"); + 0, NULL, APLOGNO(00019) "Unable to open logs"); destroy_and_exit_process(process, 1); } if (ap_run_post_config(pconf, plog, ptemp, ap_server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, - 0, NULL, "Configuration Failed"); + 0, NULL, APLOGNO(00020) "Configuration Failed"); destroy_and_exit_process(process, 1); } |