You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2005/01/19 21:00:26 UTC

svn commit: r125648 - /httpd/httpd/branches/2.0.x/server/mpm/winnt/mpm_winnt.c

Author: stoddard
Date: Wed Jan 19 12:00:25 2005
New Revision: 125648

URL: http://svn.apache.org/viewcvs?view=rev&rev=125648
Log:
Log server version and server built info at startup
Modified:
   httpd/httpd/branches/2.0.x/server/mpm/winnt/mpm_winnt.c

Modified: httpd/httpd/branches/2.0.x/server/mpm/winnt/mpm_winnt.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/server/mpm/winnt/mpm_winnt.c?view=diff&rev=125648&p1=httpd/httpd/branches/2.0.x/server/mpm/winnt/mpm_winnt.c&r1=125647&p2=httpd/httpd/branches/2.0.x/server/mpm/winnt/mpm_winnt.c&r2=125648
==============================================================================
--- httpd/httpd/branches/2.0.x/server/mpm/winnt/mpm_winnt.c	(original)
+++ httpd/httpd/branches/2.0.x/server/mpm/winnt/mpm_winnt.c	Wed Jan 19 12:00:25 2005
@@ -1624,6 +1624,11 @@
     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);