]> granicus.if.org Git - apache/commitdiff
Log server version and server built info at startup
authorBill Stoddard <stoddard@apache.org>
Thu, 19 Dec 2002 15:08:04 +0000 (15:08 +0000)
committerBill Stoddard <stoddard@apache.org>
Thu, 19 Dec 2002 15:08:04 +0000 (15:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98042 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/winnt/mpm_winnt.c

index 45a1e29110a801b5de65ea11081a515ef41db32b..83de6a009bdf623b2c4d50843c6fa30d678a6a79 100644 (file)
@@ -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);