From: Pierre Ossman Date: Mon, 26 Jan 2015 14:14:43 +0000 (+0100) Subject: Remove logging of each Timer firing X-Git-Tag: v1.4.90~66^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5789572d977a77896efbeaf53c055904057f29c3;p=tigervnc.git 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. --- 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)) {