Author: kkolinko Date: Sun Apr 27 00:45:21 2014 New Revision: 1590329 URL: http://svn.apache.org/r1590329 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=56441 Minor improvements for r1590285: Do not omit stacktrace on InvocationTargetException in a getter. Better wording for changelog.
Modified: tomcat/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java?rev=1590329&r1=1590328&r2=1590329&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java Sun Apr 27 00:45:21 2014 @@ -216,7 +216,7 @@ public final class IntrospectionUtils { } catch (InvocationTargetException ie) { ExceptionUtils.handleThrowable(ie.getCause()); log.warn("IntrospectionUtils: InvocationTargetException for " + - o.getClass() + " " + name + ")"); + o.getClass() + " " + name + ")", ie); } return null; } Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1590329&r1=1590328&r2=1590329&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Sun Apr 27 00:45:21 2014 @@ -144,7 +144,7 @@ <fix> <bug>56441</bug>: Raise the visibility of exceptions thrown when a problem is encountered calling a getter or setter on a component - attribute from debug to warning. (markt) + attribute. The logging level is raised from debug to warning. (markt) </fix> </changelog> </subsection> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org