From c13648cffe76b1459cef4996ba7550d8dc8e1cc8 Mon Sep 17 00:00:00 2001 From: Martin Ritchie Date: Tue, 3 Oct 2006 15:52:16 +0000 Subject: Changed TxnBuffer log data to debug level. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@452546 13f79535-47bb-0310-9956-ffa450edef68 --- java/broker/src/org/apache/qpid/server/txn/TxnBuffer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'java/broker/src') diff --git a/java/broker/src/org/apache/qpid/server/txn/TxnBuffer.java b/java/broker/src/org/apache/qpid/server/txn/TxnBuffer.java index e3897b3725..a75ddf4b63 100644 --- a/java/broker/src/org/apache/qpid/server/txn/TxnBuffer.java +++ b/java/broker/src/org/apache/qpid/server/txn/TxnBuffer.java @@ -45,7 +45,7 @@ public class TxnBuffer { if (_persistentMessageRecevied) { - _log.info("Begin Transaction."); + _log.debug("Begin Transaction."); _store.beginTran(); } boolean failed = true; @@ -64,12 +64,12 @@ public class TxnBuffer { if (failed) { - _log.info("Transaction Failed"); + _log.debug("Transaction Failed"); _store.abortTran(); } else { - _log.info("Transaction Succeeded"); + _log.debug("Transaction Succeeded"); _store.commitTran(); } } -- cgit v1.2.1