You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2010/02/17 18:53:43 UTC

svn commit: r911117 - in /sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper: compiler/JspRuntimeContext.java servlet/JspServletWrapper.java

Author: cziegeler
Date: Wed Feb 17 17:53:43 2010
New Revision: 911117

URL: http://svn.apache.org/viewvc?rev=911117&view=rev
Log:
Remove debug log output

Modified:
    sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/compiler/JspRuntimeContext.java
    sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/servlet/JspServletWrapper.java

Modified: sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/compiler/JspRuntimeContext.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/compiler/JspRuntimeContext.java?rev=911117&r1=911116&r2=911117&view=diff
==============================================================================
--- sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/compiler/JspRuntimeContext.java (original)
+++ sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/compiler/JspRuntimeContext.java Wed Feb 17 17:53:43 2010
@@ -184,7 +184,6 @@
     }
 
     private void invalidate(final JspServletWrapper jsw) {
-        System.out.println("Invalidation " + jsw.getJspUri());
         jsw.setLastModificationTest(0);
     }
 

Modified: sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/servlet/JspServletWrapper.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/servlet/JspServletWrapper.java?rev=911117&r1=911116&r2=911117&view=diff
==============================================================================
--- sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/servlet/JspServletWrapper.java (original)
+++ sling/trunk/bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/servlet/JspServletWrapper.java Wed Feb 17 17:53:43 2010
@@ -315,14 +315,12 @@
              */
             if (firstTime || this.lastModificationTest == 0 ) {
                 synchronized (this) {
-                    System.out.println("Compiling " + this.getJspUri());
                     firstTime = false;
 
                     // The following sets reload to true, if necessary
                     ctxt.compile();
                 }
             } else {
-                System.out.println("Calling " + this.getJspUri());
                 if (compileException != null) {
                     // Throw cached compilation exception
                     throw compileException;