Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 14089 invoked from network); 17 Jan 2011 11:36:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Jan 2011 11:36:36 -0000 Received: (qmail 93505 invoked by uid 500); 17 Jan 2011 11:36:36 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 93444 invoked by uid 500); 17 Jan 2011 11:36:34 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 93436 invoked by uid 99); 17 Jan 2011 11:36:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jan 2011 11:36:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jan 2011 11:36:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 557DE23888EA; Mon, 17 Jan 2011 11:36:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1059890 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/cursors/AbstractStoreCursor.java Date: Mon, 17 Jan 2011 11:36:04 -0000 To: commits@activemq.apache.org From: gtully@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110117113604.557DE23888EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gtully Date: Mon Jan 17 11:36:04 2011 New Revision: 1059890 URL: http://svn.apache.org/viewvc?rev=1059890&view=rev Log: additional attribute in trace Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/cursors/AbstractStoreCursor.java Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/cursors/AbstractStoreCursor.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/cursors/AbstractStoreCursor.java?rev=1059890&r1=1059889&r2=1059890&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/cursors/AbstractStoreCursor.java (original) +++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/cursors/AbstractStoreCursor.java Mon Jan 17 11:36:04 2011 @@ -252,7 +252,7 @@ public abstract class AbstractStoreCurso protected final synchronized void fillBatch() { if (LOG.isTraceEnabled()) { LOG.trace("fillBatch - batchResetNeeded=" + batchResetNeeded - + ", hasMessages=" + this.storeHasMessages + ", size=" + this.size); + + ", hasMessages=" + this.storeHasMessages + ", size=" + this.size + ", cacheEnabled=" + this.cacheEnabled); } if (batchResetNeeded) { resetBatch();