Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 88247 invoked from network); 20 Nov 2008 12:57:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Nov 2008 12:57:58 -0000 Received: (qmail 55506 invoked by uid 500); 20 Nov 2008 12:58:07 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 55476 invoked by uid 500); 20 Nov 2008 12:58:06 -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 55467 invoked by uid 99); 20 Nov 2008 12:58:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Nov 2008 04:58:06 -0800 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; Thu, 20 Nov 2008 12:56:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7FA60238896B; Thu, 20 Nov 2008 04:57:37 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r719219 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/ActiveMQSession.java Date: Thu, 20 Nov 2008 12:57:37 -0000 To: commits@activemq.apache.org From: gtully@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081120125737.7FA60238896B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gtully Date: Thu Nov 20 04:57:36 2008 New Revision: 719219 URL: http://svn.apache.org/viewvc?rev=719219&view=rev Log: improve debug log information Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/ActiveMQSession.java Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/ActiveMQSession.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/ActiveMQSession.java?rev=719219&r1=719218&r2=719219&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/ActiveMQSession.java (original) +++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/ActiveMQSession.java Thu Nov 20 04:57:36 2008 @@ -498,7 +498,7 @@ throw new javax.jms.IllegalStateException("Not a transacted session"); } if (LOG.isDebugEnabled()) { - LOG.debug(getSessionId() + " Transaction Commit"); + LOG.debug(getSessionId() + " Transaction Commit :" + transactionContext.getTransactionId()); } transactionContext.commit(); }