]> source.dussan.org Git - tigervnc.git/commitdiff
Remove logging of each Timer firing
authorPierre Ossman <ossman@cendio.se>
Mon, 26 Jan 2015 14:14:43 +0000 (15:14 +0100)
committerPierre Ossman <ossman@cendio.se>
Mon, 26 Jan 2015 14:14:43 +0000 (15:14 +0100)
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

index 5f8ac893f3fb6626d8be60d86d329e9f2ebb1bcd..5f9c6f2f46f66f30b5229fbd4662afb9079da1e3 100644 (file)
@@ -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)) {