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 2007/11/09 12:45:14 UTC

svn commit: r593497 - /tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c

Author: mturk
Date: Fri Nov  9 03:45:14 2007
New Revision: 593497

URL: http://svn.apache.org/viewvc?rev=593497&view=rev
Log:
Log missing uri maps

Modified:
    tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c

Modified: tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c?rev=593497&r1=593496&r2=593497&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Fri Nov  9 03:45:14 2007
@@ -19,7 +19,7 @@
  * Description: Apache 2 plugin for Tomcat                                 *
  * Author:      Gal Shachor <sh...@il.ibm.com>                           *
  *              Henri Gomez <hg...@apache.org>                            *
- * Version:     $Revision$                                          *
+ * Version:     $Revision$                                        *
  ***************************************************************************/
 
 /*
@@ -2930,9 +2930,9 @@
             if (!conf->uw_map) {
                 if (JK_IS_DEBUG_LEVEL(conf->log))
                     jk_log(conf->log, JK_LOG_DEBUG,
-                           "Into translate empty uri map for uri=%s",
+                           "missing uri map for %s:%s",
+                           conf->s->server_hostname ? conf->s->server_hostname : "_default_",
                            r->uri);
-
                 return DECLINED;
             }
             else
@@ -3041,6 +3041,12 @@
                     }
                 }
             }
+            else {
+                if (JK_IS_DEBUG_LEVEL(conf->log))
+                    jk_log(conf->log, JK_LOG_DEBUG,
+                           "no match for %s found",
+                           r->uri);
+            }
         }
     }
 
@@ -3081,9 +3087,9 @@
             if (!conf->uw_map) {
                 if (JK_IS_DEBUG_LEVEL(conf->log))
                     jk_log(conf->log, JK_LOG_DEBUG,
-                           "Into map_to_storage empty uri map for uri=%s",
+                           "missing uri map for %s:%s",
+                           conf->s->server_hostname ? conf->s->server_hostname : "_default_",
                            r->uri);
-
                 return DECLINED;
             }
             else
@@ -3117,6 +3123,12 @@
                         *jsessionid = '\0';
                 }
                 return DECLINED;
+            }
+            else {
+                if (JK_IS_DEBUG_LEVEL(conf->log))
+                    jk_log(conf->log, JK_LOG_DEBUG,
+                           "no match for %s found",
+                           r->uri);
             }
         }
     }



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