summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2011-09-30 14:23:32 +0000
committerAlan Conway <aconway@apache.org>2011-09-30 14:23:32 +0000
commite53cb60510f8e7afee95bcbbad445b280ff29ce2 (patch)
tree9d55fe0ff4e175b54edaf13e5991078f8a290482
parent8115eff7fcd46f4b69327caef0eb985a6d209cc6 (diff)
downloadqpid-python-e53cb60510f8e7afee95bcbbad445b280ff29ce2.tar.gz
QPID-2920: removed temporary debug logging statements.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qpid-2920-active@1177676 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/cluster/exp/Core.cpp1
-rw-r--r--qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/qpid/cpp/src/qpid/cluster/exp/Core.cpp b/qpid/cpp/src/qpid/cluster/exp/Core.cpp
index 31ca2f067f..53a4169041 100644
--- a/qpid/cpp/src/qpid/cluster/exp/Core.cpp
+++ b/qpid/cpp/src/qpid/cluster/exp/Core.cpp
@@ -47,7 +47,6 @@ Core::Core(const Settings& s, broker::Broker& b) :
for (size_t i = 0; i < nGroups; ++i) {
// FIXME aconway 2011-09-26: review naming. Create group for non-message traffic, e.g. initial join protocol.
std::string groupName = s.name + "-" + boost::lexical_cast<std::string>(i);
- QPID_LOG(critical, "FIXME create group " << i << " of " << "nGroups. " << groupName);
groups.push_back(new Group(*this));
boost::intrusive_ptr<QueueHandler> queueHandler(
new QueueHandler(groups[i]->getEventHandler(), groups[i]->getMulticaster(), settings));
diff --git a/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h b/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h
index b7ec2e4fb1..b065d69e76 100644
--- a/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h
+++ b/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h
@@ -45,7 +45,6 @@ class CountdownTimer {
/** Start the countdown if not already started. */
void start() {
- QPID_LOG(debug, "FIXME CountdownTimer::start");
sys::Mutex::ScopedLock l(lock);
if (!timerRunning) {
timerRunning = true;
@@ -56,7 +55,6 @@ class CountdownTimer {
/** Stop the countdown if not already stopped. */
void stop() {
- QPID_LOG(debug, "FIXME CountdownTimer::stop");
sys::Mutex::ScopedLock l(lock);
if (timerRunning) {
timerRunning = false;
@@ -76,7 +74,6 @@ class CountdownTimer {
// Called when countdown expires.
void fire() {
- QPID_LOG(debug, "FIXME CountdownTimer::fire");
bool doCallback = false;
{
sys::Mutex::ScopedLock l(lock);