Author: markt Date: Sun Jan 6 13:34:21 2008 New Revision: 609411 URL: http://svn.apache.org/viewvc?rev=609411&view=rev Log: Fix 43887. Include exception in the log message.
Modified: tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapper.java tomcat/container/tc5.5.x/webapps/docs/changelog.xml tomcat/current/tc5.5.x/STATUS.txt Modified: tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapper.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapper.java?rev=609411&r1=609410&r2=609411&view=diff ============================================================================== --- tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapper.java (original) +++ tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/StandardWrapper.java Sun Jan 6 13:34:21 2008 @@ -1748,7 +1748,7 @@ broadcaster.sendNotification(notification); } } catch( Exception ex ) { - log.info("Error registering servlet with jmx " + this); + log.info("Error registering servlet with jmx " + this, ex); } if (isJspServlet) { @@ -1763,7 +1763,7 @@ .registerComponent(instance, jspMonitorON, null); } catch( Exception ex ) { log.info("Error registering JSP monitoring with jmx " + - instance); + instance, ex); } } } Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?rev=609411&r1=609410&r2=609411&view=diff ============================================================================== --- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original) +++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Sun Jan 6 13:34:21 2008 @@ -86,6 +86,9 @@ c) Escape character '\\' is allowed and respected as a escape character, and will be unescaped during parsing. </fix> + <fix> + <bug>43887</bug>: Include exception in the log message. (markt) + </fix> </changelog> </subsection> <subsection name="Jasper" > Modified: tomcat/current/tc5.5.x/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS.txt?rev=609411&r1=609410&r2=609411&view=diff ============================================================================== --- tomcat/current/tc5.5.x/STATUS.txt (original) +++ tomcat/current/tc5.5.x/STATUS.txt Sun Jan 6 13:34:21 2008 @@ -47,12 +47,6 @@ -1: 0: fhanik, this needs to be reworked completely, so I'm neutral -* Fix http://issues.apache.org/bugzilla/show_bug.cgi?id=43887 - Include exception in log message - http://svn.apache.org/viewvc?rev=597738&view=rev - +1: markt, pero, fhanik - -1: - * Fix license issues Replace: http://svn.apache.org/repos/asf/tomcat/servletapi/servlet2.4-jsp2.0-tc5.x/jsr152/src/share/dtd/jsp_2_0.xsd --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]