jtaylor 02/03/29 06:56:16 Modified: . project.xml src/java/org/apache/turbine Turbine.java Log: - Updated project.xml to build the tools - Added a log statement for the case where dispatching to the exceptionHandler fails. Previously the exception thrown there (f) was lost. Revision Changes Path 1.18 +1 -0 jakarta-turbine-3/project.xml Index: project.xml =================================================================== RCS file: /home/cvs/jakarta-turbine-3/project.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- project.xml 28 Mar 2002 16:56:50 -0000 1.17 +++ project.xml 29 Mar 2002 14:56:16 -0000 1.18 @@ -282,6 +282,7 @@ <sourceDirectories> <sourceDirectory>src/java</sourceDirectory> + <sourceDirectory>src/tool</sourceDirectory> </sourceDirectories> <testSourceDirectories> 1.31 +3 -1 jakarta-turbine-3/src/java/org/apache/turbine/Turbine.java Index: Turbine.java =================================================================== RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/Turbine.java,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- Turbine.java 7 Mar 2002 23:46:44 -0000 1.30 +++ Turbine.java 29 Mar 2002 14:56:16 -0000 1.31 @@ -123,7 +123,7 @@ * @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a> * @author <a href="mailto:[EMAIL PROTECTED]">Daniel Rall</a> * @author <a href="mailto:[EMAIL PROTECTED]">Martin Poeschl</a> - * @version $Id: Turbine.java,v 1.30 2002/03/07 23:46:44 jmcnally Exp $ + * @version $Id: Turbine.java,v 1.31 2002/03/29 14:56:16 jtaylor Exp $ */ public class Turbine extends HttpServlet @@ -394,6 +394,8 @@ } catch (Exception f) { + Log.error( "Failed to dispatch to exception handler", f ); + String mimeType = "text/plain"; try
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>