public void generateWebMapping( String file, JspCompilationContext clctxt )
throws IOException
{
+ if (log.isDebugEnabled()) {
+ log.debug("Generating web mapping for file " + file
+ + " using compilation context " + clctxt);
+ }
+
String className = clctxt.getServletClassName();
String packageName = clctxt.getServletPackageName();
protected void processFile(String file)
throws JasperException
{
+ if (log.isDebugEnabled()) {
+ log.debug("Processing file: " + file);
+ }
+
ClassLoader originalClassLoader = null;
try {
// Otherwise only generate .java, if .jsp file is newer than
// the .java file
if( clc.isOutDated(compile) ) {
+ if (log.isDebugEnabled()) {
+ log.debug(jspUri + " is out dated, compiling...");
+ }
+
clc.compile(compile, true);
}
</update>
</changelog>
</subsection>
+ <subsection name="Jasper">
+ <changelog>
+ <fix>
+ <bug>41227</bug> Add a bit of DEBUG-level logging to JspC so users know
+ which file is being compiled. (yoavs)
+ </fix>
+ </changelog>
+ </subsection>
</section>
<section name="Tomcat 6.0.10 (remm)">
<subsection name="Catalina">