Author: kkolinko Date: Wed Jun 6 13:34:54 2012 New Revision: 1346885 URL: http://svn.apache.org/viewvc?rev=1346885&view=rev Log: https://issues.apache.org/bugzilla/show_bug.cgi?id=48097#c7 https://issues.apache.org/bugzilla/show_bug.cgi?id=53366#c1 If _jspService() cannot properly handle an exception because _jspx_page_context initialization failed, write it to the logs instead of silent swallowing.
Modified: tomcat/trunk/java/org/apache/jasper/compiler/Generator.java Modified: tomcat/trunk/java/org/apache/jasper/compiler/Generator.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/Generator.java?rev=1346885&r1=1346884&r2=1346885&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/compiler/Generator.java (original) +++ tomcat/trunk/java/org/apache/jasper/compiler/Generator.java Wed Jun 6 13:34:54 2012 @@ -3395,6 +3395,7 @@ class Generator { out.printil("try { out.clearBuffer(); } catch (java.io.IOException e) {}"); out.popIndent(); out.printil("if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);"); + out.printil("else log(t.getMessage(), t);"); out.popIndent(); out.printil("}"); out.popIndent(); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org