You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2014/04/27 02:49:01 UTC

svn commit: r1590330 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/tomcat/util/IntrospectionUtils.java webapps/docs/changelog.xml

Author: kkolinko
Date: Sun Apr 27 00:49:00 2014
New Revision: 1590330

URL: http://svn.apache.org/r1590330
Log:
Merged r1590329 from tomcat/trunk:

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/tc7.0.x/trunk/   (props changed)
    tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java
    tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc7.0.x/trunk/
------------------------------------------------------------------------------
  Merged /tomcat/trunk:r1590329

Modified: tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java?rev=1590330&r1=1590329&r2=1590330&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java (original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/IntrospectionUtils.java Sun Apr 27 00:49:00 2014
@@ -455,7 +455,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/tc7.0.x/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1590330&r1=1590329&r2=1590330&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Sun Apr 27 00:49:00 2014
@@ -128,7 +128,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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org