You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by eh...@apache.org on 2007/04/21 20:14:16 UTC

svn commit: r531073 - /incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java

Author: ehillenius
Date: Sat Apr 21 11:14:15 2007
New Revision: 531073

URL: http://svn.apache.org/viewvc?view=rev&rev=531073
Log:
was supposed to be a debug statement

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java?view=diff&rev=531073&r1=531072&r2=531073
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java Sat Apr 21 11:14:15 2007
@@ -475,9 +475,9 @@
 			}
 		});
 
-		if (notCleanedUpCounter.count > 0)
+		if (log.isDebugEnabled() && notCleanedUpCounter.count > 0)
 		{
-			log.warn("still " + notCleanedUpCounter.count + " messages unrendered");
+			log.debug("still " + notCleanedUpCounter.count + " messages unrendered");
 		}
 	}