From 5789572d977a77896efbeaf53c055904057f29c3 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Mon, 26 Jan 2015 15:14:43 +0100 Subject: [PATCH] Remove logging of each Timer firing It just adds noise and you can't really tell which timer it is anyway without more logging in other places. --- common/rfb/Timer.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/common/rfb/Timer.cxx b/common/rfb/Timer.cxx index 5f8ac893..5f9c6f2f 100644 --- a/common/rfb/Timer.cxx +++ b/common/rfb/Timer.cxx @@ -101,7 +101,6 @@ int Timer::checkTimeouts() { while (pending.front()->isBefore(now)) { Timer* timer = pending.front(); pending.pop_front(); - vlog.debug("handleTimeout(%p)", timer); if (timer->cb->handleTimeout(timer)) { timer->dueTime = addMillis(timer->dueTime, timer->timeoutMs); if (timer->isBefore(now)) { -- 2.39.5