2 Replies Latest reply on Mar 30, 2006 10:03 AM by sudsm

    cracy Logs

       

      2006-02-25 20:01:34,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processing the node events in region: Regions--- fqn: /_default_/ maxNodes 1000000 TimeToIdleSeconds 300 maxAgeSeconds 0 current eviction queue size is 0
      2006-02-25 20:01:34,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processed 0 node events
      2006-02-25 20:01:35,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processing the node events in region: Regions--- fqn: /_default_/ maxNodes 1000000 TimeToIdleSeconds 300 maxAgeSeconds 0 current eviction queue size is 0
      2006-02-25 20:01:35,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processed 0 node events
      2006-02-25 20:01:36,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processing the node events in region: Regions--- fqn: /_default_/ maxNodes 1000000 TimeToIdleSeconds 300 maxAgeSeconds 0 current eviction queue size is 0
      2006-02-25 20:01:36,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processed 0 node events
      2006-02-25 20:01:36,718 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processing the node events in region: Regions--- fqn: /_default_/ maxNodes 5000 TimeToIdleSeconds 1000 maxAgeSeconds 0 current eviction queue size is 0
      2006-02-25 20:01:36,718 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processed 0 node events
      2006-02-25 20:01:37,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processing the node events in region: Regions--- fqn: /_default_/ maxNodes 1000000 TimeToIdleSeconds 300 maxAgeSeconds 0 current eviction queue size is 0
      2006-02-25 20:01:37,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processed 0 node events
      2006-02-25 20:01:38,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processing the node events in region: Regions--- fqn: /_default_/ maxNodes 1000000 TimeToIdleSeconds 300 maxAgeSeconds 0 current eviction queue size is 0
      2006-02-25 20:01:38,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processed 0 node events
      2006-02-25 20:01:39,015 DEBUG [org.jboss.cache.eviction.LRUAlgorithm] processing the node events in



      how can i switch off this ?

        • 1. Re: cracy Logs
          brian.stansberry

          Set attribute EvictionPolicyClass to an empty value to turn off eviction.

          If your question is how to turn off the logging, see http://log4j.apache.org

          • 2. Re: cracy Logs

            I just noticed that this default logging behaviour is filling up my disk too..to switch the log level to more sensible 'INFO' or 'WARN', edit your log4j.xml found in server conf directory and add the following category.

            <category name="org.jboss.cache">
             <priority value="INFO"/>
             </category>
            


            in Limit Categories section...

            HTH.