summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/ha/Primary.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2013-08-01 20:56:29 +0000
committerAlan Conway <aconway@apache.org>2013-08-01 20:56:29 +0000
commita7d9672cc9a81ca78b87d21da75a9ffb164ca60c (patch)
tree24eb62defb9191a280cd7bbf32674e9f1b961ce4 /qpid/cpp/src/qpid/ha/Primary.cpp
parent09ba98e9af327f339de442512a288190893f2c92 (diff)
downloadqpid-python-a7d9672cc9a81ca78b87d21da75a9ffb164ca60c.tar.gz
QPID-4327: HA logging fixes.
- Removed "FIXME" log statements inadvertently left in code. - Changed some trace statements to debug to faclilitate debugging. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509428 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qpid/ha/Primary.cpp')
-rw-r--r--qpid/cpp/src/qpid/ha/Primary.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/ha/Primary.cpp b/qpid/cpp/src/qpid/ha/Primary.cpp
index 4208147ff4..d67761a625 100644
--- a/qpid/cpp/src/qpid/ha/Primary.cpp
+++ b/qpid/cpp/src/qpid/ha/Primary.cpp
@@ -389,14 +389,14 @@ void Primary::setCatchupQueues(const RemoteBackupPtr& backup, bool createGuards)
}
void Primary::startTx(const boost::shared_ptr<broker::TxBuffer>& tx) {
- QPID_LOG(trace, logPrefix << "Started TX transaction");
+ QPID_LOG(debug, logPrefix << "Started TX transaction");
shared_ptr<PrimaryTxObserver> observer(new PrimaryTxObserver(haBroker));
observer->initialize();
tx->setObserver(observer);
}
void Primary::startDtx(const boost::shared_ptr<broker::DtxBuffer>& dtx) {
- QPID_LOG(trace, logPrefix << "Started DTX transaction");
+ QPID_LOG(debug, logPrefix << "Started DTX transaction");
shared_ptr<PrimaryTxObserver> observer(new PrimaryTxObserver(haBroker));
observer->initialize();
dtx->setObserver(observer);