summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h')
-rw-r--r--qpid/cpp/src/qpid/cluster/exp/CountdownTimer.h3
1 files changed, 0 insertions, 3 deletions
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);