You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ce...@apache.org on 2015/03/05 23:54:10 UTC

activemq git commit: removed logging that snuck in there for https://issues.apache.org/jira/browse/AMQ-5578

Repository: activemq
Updated Branches:
  refs/heads/master 3ef8f492a -> 8e551b4c3


removed logging that snuck in there for https://issues.apache.org/jira/browse/AMQ-5578


Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/8e551b4c
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/8e551b4c
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/8e551b4c

Branch: refs/heads/master
Commit: 8e551b4c3bab232353e133b0443224262f2aa999
Parents: 3ef8f49
Author: Christian Posta <ch...@gmail.com>
Authored: Thu Mar 5 15:27:59 2015 -0700
Committer: Christian Posta <ch...@gmail.com>
Committed: Thu Mar 5 15:53:44 2015 -0700

----------------------------------------------------------------------
 .../org/apache/activemq/store/kahadb/disk/journal/Journal.java    | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/8e551b4c/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/disk/journal/Journal.java
----------------------------------------------------------------------
diff --git a/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/disk/journal/Journal.java b/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/disk/journal/Journal.java
index 54386cb..358652d 100644
--- a/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/disk/journal/Journal.java
+++ b/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/disk/journal/Journal.java
@@ -227,7 +227,6 @@ public class Journal {
     }
 
     private void doPreallocationSparseFile(RecoverableRandomAccessFile file) {
-        LOG.info("Preallocate journal file with sparse file");
         try {
             file.seek(maxFileLength - 1);
             file.write((byte)0x00);
@@ -237,7 +236,6 @@ public class Journal {
     }
 
     private void doPreallocationZeros(RecoverableRandomAccessFile file) {
-        LOG.info("Preallocate journal file with zeros");
         ByteBuffer buffer = ByteBuffer.allocate(maxFileLength);
         for (int i = 0; i < maxFileLength; i++) {
             buffer.put((byte) 0x00);
@@ -255,7 +253,6 @@ public class Journal {
     }
 
     private void doPreallocationKernelCopy(RecoverableRandomAccessFile file) {
-        LOG.info("Preallocate journal file with kernel file copying");
 
         // create a template file that will be used to pre-allocate the journal files
         File templateFile = createJournalTemplateFile();