Author: aconway Date: Fri Sep 30 14:23:32 2011 New Revision: 1177676 URL: http://svn.apache.org/viewvc?rev=1177676&view=rev Log: QPID-2920: removed temporary debug logging statements.
Modified: qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/Core.cpp qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h Modified: qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/Core.cpp URL: http://svn.apache.org/viewvc/qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/Core.cpp?rev=1177676&r1=1177675&r2=1177676&view=diff ============================================================================== --- qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/Core.cpp (original) +++ qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/Core.cpp Fri Sep 30 14:23:32 2011 @@ -47,7 +47,6 @@ Core::Core(const Settings& s, broker::Br 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)); Modified: qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h URL: http://svn.apache.org/viewvc/qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h?rev=1177676&r1=1177675&r2=1177676&view=diff ============================================================================== --- qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h (original) +++ qpid/branches/qpid-2920-active/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h Fri Sep 30 14:23:32 2011 @@ -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); --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:commits-subscr...@qpid.apache.org