[hornetq-commits] JBoss hornetq SVN: r9537 - trunk/src/main/org/hornetq/core/journal/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Aug 12 16:31:54 EDT 2010


Author: clebert.suconic at jboss.com
Date: 2010-08-12 16:31:54 -0400 (Thu, 12 Aug 2010)
New Revision: 9537

Modified:
   trunk/src/main/org/hornetq/core/journal/impl/JournalImpl.java
Log:
tweak

Modified: trunk/src/main/org/hornetq/core/journal/impl/JournalImpl.java
===================================================================
--- trunk/src/main/org/hornetq/core/journal/impl/JournalImpl.java	2010-08-12 20:21:49 UTC (rev 9536)
+++ trunk/src/main/org/hornetq/core/journal/impl/JournalImpl.java	2010-08-12 20:31:54 UTC (rev 9537)
@@ -1465,7 +1465,7 @@
             // HORNETQ-482 - Flush deletes only if memory is critical 
             if (recordsToDelete.size() > DELETE_FLUSH && (runtime.freeMemory() < (runtime.maxMemory() * 0.2)))
             {
-               log.info("Flushing deletes during loading, deleteCount = " + recordsToDelete.size());
+               log.debug("Flushing deletes during loading, deleteCount = " + recordsToDelete.size());
                // Clean up when the list is too large, or it won't be possible to load large sets of files
                // Done as part of JBMESSAGING-1678
                Iterator<RecordInfo> iter = records.iterator();
@@ -1481,7 +1481,7 @@
 
                recordsToDelete.clear();
                
-               log.info("flush delete done");
+               log.debug("flush delete done");
             }
          }
 



More information about the hornetq-commits mailing list