]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Log server version and server built info at startup
authorBill Stoddard <stoddard@apache.org>
Wed, 19 Jan 2005 20:00:25 +0000 (20:00 +0000)
committerBill Stoddard <stoddard@apache.org>
Wed, 19 Jan 2005 20:00:25 +0000 (20:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@125648 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/winnt/mpm_winnt.c

index 1289ce7e72dc6900a85355f784335ceeb53d3b2c..ef2d54f80c1108e26c3dc1d1d47a0a3ea4ceb6c4 100644 (file)
@@ -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);