improve debug log information

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@719219 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2008-11-20 12:57:36 +00:00
parent 2b2b35e757
commit 0fe1944bad
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ public class ActiveMQSession implements Session, QueueSession, TopicSession, Sta
throw new javax.jms.IllegalStateException("Not a transacted session"); throw new javax.jms.IllegalStateException("Not a transacted session");
} }
if (LOG.isDebugEnabled()) { if (LOG.isDebugEnabled()) {
LOG.debug(getSessionId() + " Transaction Commit"); LOG.debug(getSessionId() + " Transaction Commit :" + transactionContext.getTransactionId());
} }
transactionContext.commit(); transactionContext.commit();
} }