From: Bill Stoddard Date: Wed, 19 Jan 2005 20:00:25 +0000 (+0000) Subject: Log server version and server built info at startup X-Git-Tag: 2.0.53~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7db318dca7df20c99a0ea7f4f7caec5272c7dc9a;p=thirdparty%2Fapache%2Fhttpd.git Log server version and server built info at startup git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@125648 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 1289ce7e72d..ef2d54f80c1 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -1624,6 +1624,11 @@ AP_DECLARE(int) ap_mpm_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s ) else { /* A real-honest to goodness parent */ + ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, + "%s configured -- resuming normal operations", + ap_get_server_version()); + ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, + "Server built: %s", ap_get_server_built()); restart = master_main(ap_server_conf, shutdown_event, restart_event);