You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2005/03/18 09:13:55 UTC

cvs commit: jakarta-tomcat-connectors/jk/native/apache-1.3 mod_jk.c

mturk       2005/03/18 00:13:55

  Modified:    jk/native/apache-1.3 mod_jk.c
  Log:
  Use EMERG instead ERR for critical errors.
  
  Revision  Changes    Path
  1.75      +3 -3      jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c
  
  Index: mod_jk.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- mod_jk.c	17 Mar 2005 12:06:03 -0000	1.74
  +++ mod_jk.c	18 Mar 2005 08:13:54 -0000	1.75
  @@ -1987,7 +1987,7 @@
                  jk_shm_name(), rc);
   #if !defined(WIN32) && !defined(NETWARE)
       if (!jk_shm_file)
  -        ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_NOERRNO, NULL,
  +        ap_log_error(APLOG_MARK, APLOG_EMERG | APLOG_NOERRNO, NULL,
                        "No JkShmFile defined in httpd.conf. "
                        "LoadBalancer will not function properly!");
   #endif
  @@ -2018,7 +2018,7 @@
       if (!jk_map_read_properties(init_map, conf->worker_file, NULL)) {
   
           if (jk_map_size(init_map) == 0) {
  -            ap_log_error(APLOG_MARK, APLOG_ERR, NULL,
  +            ap_log_error(APLOG_MARK, APLOG_EMERG, NULL,
                            "No worker file and no worker options in httpd.conf "
                            "use JkWorkerFile to set workers");
               return;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org