[jboss-cvs] JBossCache/src/org/jboss/cache/eviction ...
Brian Stansberry
brian.stansberry at jboss.com
Thu Feb 8 12:07:35 EST 2007
User: bstansberry
Date: 07/02/08 12:07:35
Modified: src/org/jboss/cache/eviction BaseEvictionAlgorithm.java
Log:
Log routine per-request items at TRACE
Revision Changes Path
1.22 +5 -5 JBossCache/src/org/jboss/cache/eviction/BaseEvictionAlgorithm.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: BaseEvictionAlgorithm.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/eviction/BaseEvictionAlgorithm.java,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -b -r1.21 -r1.22
--- BaseEvictionAlgorithm.java 1 Feb 2007 17:59:01 -0000 1.21
+++ BaseEvictionAlgorithm.java 8 Feb 2007 17:07:35 -0000 1.22
@@ -23,7 +23,7 @@
* abstract methods and a policy.
*
* @author Daniel Huang - dhuang at jboss.org 10/2005
- * @version $Revision: 1.21 $
+ * @version $Revision: 1.22 $
*/
public abstract class BaseEvictionAlgorithm implements EvictionAlgorithm
{
@@ -344,9 +344,9 @@
}
else
{
- if (log.isDebugEnabled())
+ if (log.isTraceEnabled())
{
- log.debug("processRemoveNodes(): Can't find node associated with fqn: " + fqn
+ log.trace("processRemoveNodes(): Can't find node associated with fqn: " + fqn
+ "Could have been evicted earlier. Will just continue.");
}
return;
@@ -415,9 +415,9 @@
NodeEntry ne = evictionQueue.getNodeEntry(fqn);
if (ne == null)
{
- if (log.isDebugEnabled())
+ if (log.isTraceEnabled())
{
- log.debug("Adding element " + fqn + " for a node that doesn't exist yet. Process as an add.");
+ log.trace("Adding element " + fqn + " for a node that doesn't exist yet. Process as an add.");
}
this.processAddedNodes(fqn, 1, false);
return;
More information about the jboss-cvs-commits
mailing list