diff options
author | Daniel Earl Poirier <poirier@apache.org> | 2010-02-16 21:50:10 +0100 |
---|---|---|
committer | Daniel Earl Poirier <poirier@apache.org> | 2010-02-16 21:50:10 +0100 |
commit | 0c96068dc42769570088980c7436ba8b9dcf0123 (patch) | |
tree | 2f57ba5a555ffc8ce0228f7d83971d853de1ff4b /server/mpm/winnt | |
parent | Fix compile warning (discarding constness of fname) (diff) | |
download | apache2-0c96068dc42769570088980c7436ba8b9dcf0123.tar.xz apache2-0c96068dc42769570088980c7436ba8b9dcf0123.zip |
Log command line on startup, so there's a record of command line
arguments like -f. Suggested by Shaya Potter. [Dan Poirier]
PR: 48752
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910684 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/winnt')
-rw-r--r-- | server/mpm/winnt/mpm_winnt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 6cac77a99c..963dd0d1ef 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -1696,6 +1696,7 @@ static int winnt_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s ) ap_get_server_description()); ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, "Server built: %s", ap_get_server_built()); + ap_log_command_line(plog, s); restart = master_main(ap_server_conf, shutdown_event, restart_event); |