You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ti...@apache.org on 2011/11/18 01:11:48 UTC

svn commit: r1203433 - /tomcat/jk/trunk/native/common/jk_uri_worker_map.c

Author: timw
Date: Fri Nov 18 00:11:48 2011
New Revision: 1203433

URL: http://svn.apache.org/viewvc?rev=1203433&view=rev
Log:
Log errors loading uri worker map file.

Modified:
    tomcat/jk/trunk/native/common/jk_uri_worker_map.c

Modified: tomcat/jk/trunk/native/common/jk_uri_worker_map.c
URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/jk_uri_worker_map.c?rev=1203433&r1=1203432&r2=1203433&view=diff
==============================================================================
--- tomcat/jk/trunk/native/common/jk_uri_worker_map.c (original)
+++ tomcat/jk/trunk/native/common/jk_uri_worker_map.c Fri Nov 18 00:11:48 2011
@@ -1225,6 +1225,8 @@ int uri_worker_map_load(jk_uri_worker_ma
         if (JK_IS_DEBUG_LEVEL(l))
             uri_worker_map_dump(uw_map, "after file load", l);
         rc = JK_TRUE;
+    } else {
+        jk_log(l, JK_LOG_ERROR, "Failed to load uri_worker_map file %s (errno=%d, err=%s).", uw_map->fname, errno, strerror(errno));
     }
     jk_map_free(&map);
     return rc;



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