From: Bill Stoddard Date: Thu, 19 Dec 2002 15:08:04 +0000 (+0000) Subject: Log server version and server built info at startup X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b61c338403842682f2e977b9d7607ca742d5ddd;p=apache Log server version and server built info at startup git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98042 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 45a1e29110..83de6a009b 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -1629,6 +1629,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);