[jboss-cvs] JBossCache/src/org/jboss/cache/eviction ...

Manik Surtani msurtani at jboss.com
Wed Aug 9 10:50:00 EDT 2006


  User: msurtani
  Date: 06/08/09 10:50:00

  Modified:    src/org/jboss/cache/eviction  RegionManager.java
  Log:
  Merged in fixes from 1.4.0.SP1
  
  Revision  Changes    Path
  1.20      +3 -3      JBossCache/src/org/jboss/cache/eviction/RegionManager.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: RegionManager.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/eviction/RegionManager.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -b -r1.19 -r1.20
  --- RegionManager.java	19 Jul 2006 21:34:43 -0000	1.19
  +++ RegionManager.java	9 Aug 2006 14:50:00 -0000	1.20
  @@ -34,7 +34,7 @@
    *
    * @author Ben Wang 02-2004
    * @author Daniel Huang (dhuang at jboss.org)
  - * @version $Id: RegionManager.java,v 1.19 2006/07/19 21:34:43 msurtani Exp $
  + * @version $Id: RegionManager.java,v 1.20 2006/08/09 14:50:00 msurtani Exp $
    */
   public class RegionManager
   {
  @@ -459,7 +459,7 @@
      {
         public void cacheStarted(CacheSPI cache)
         {
  -         log_.info("Starting eviction timer");
  +         log_.debug("Starting eviction timer");
            evictionThread_ = new Timer();
            evictionThread_.schedule(evictionTimerTask_, RegionManager.this.getEvictionThreadWakeupIntervalSeconds() * 1000,
                  RegionManager.this.getEvictionThreadWakeupIntervalSeconds() * 1000);
  @@ -467,7 +467,7 @@
   
         public void cacheStopped(CacheSPI cache)
         {
  -         log_.info("Stopping eviction timer ... ");
  +         log_.debug("Stopping eviction timer ... ");
            if (evictionThread_ != null)
               evictionThread_.cancel();
            evictionThread_ = null;
  
  
  



More information about the jboss-cvs-commits mailing list