summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2006-10-03 15:52:16 +0000
committerMartin Ritchie <ritchiem@apache.org>2006-10-03 15:52:16 +0000
commitc13648cffe76b1459cef4996ba7550d8dc8e1cc8 (patch)
tree657f12f511294800de4979e9e41c8a8d84f67d15
parent587542968e8f262b077d22bd4556044a5d65bef9 (diff)
downloadqpid-python-c13648cffe76b1459cef4996ba7550d8dc8e1cc8.tar.gz
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
-rw-r--r--java/broker/src/org/apache/qpid/server/txn/TxnBuffer.java6
1 files changed, 3 insertions, 3 deletions
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();
}
}