Author: remy.maucherat(a)jboss.com
Date: 2008-07-22 10:04:03 -0400 (Tue, 22 Jul 2008)
New Revision: 724
Modified:
trunk/java/org/apache/jasper/servlet/JspServlet.java
trunk/webapps/docs/changelog.xml
Log:
- JBWEB-110: Remove per request logging.
Modified: trunk/java/org/apache/jasper/servlet/JspServlet.java
===================================================================
--- trunk/java/org/apache/jasper/servlet/JspServlet.java 2008-07-22 13:17:32 UTC (rev
723)
+++ trunk/java/org/apache/jasper/servlet/JspServlet.java 2008-07-22 14:04:03 UTC (rev
724)
@@ -244,22 +244,6 @@
}
}
- if (log.isDebugEnabled()) {
- log.debug("JspEngine --> " + jspUri);
- log.debug("\t ServletPath: " + request.getServletPath());
- log.debug("\t PathInfo: " + request.getPathInfo());
- log.debug("\t RealPath: " + context.getRealPath(jspUri));
- log.debug("\t RequestURI: " + request.getRequestURI());
- log.debug("\t QueryString: " + request.getQueryString());
- log.debug("\t Request Params: ");
- Enumeration e = request.getParameterNames();
- while (e.hasMoreElements()) {
- String name = (String) e.nextElement();
- log.debug("\t\t " + name + " = "
- + request.getParameter(name));
- }
- }
-
try {
boolean precompile = preCompile(request);
serviceJspFile(request, response, jspUri, null, precompile);
Modified: trunk/webapps/docs/changelog.xml
===================================================================
--- trunk/webapps/docs/changelog.xml 2008-07-22 13:17:32 UTC (rev 723)
+++ trunk/webapps/docs/changelog.xml 2008-07-22 14:04:03 UTC (rev 724)
@@ -69,6 +69,10 @@
<fix>
<jira>98</jira>: Remove mandatory usage of URLClassLoader for better
integration with AS. (remm)
</fix>
+ <fix>
+ <jira>110</jira>: Remove the per request logging of everything in JSP
Servlet, which caused
+ i18n issues. (remm)
+ </fix>
</changelog>
</subsection>
<subsection name="Native">
Show replies by date