aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/Timer.cxx
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2015-01-26 15:14:43 +0100
committerPierre Ossman <ossman@cendio.se>2015-01-26 15:14:43 +0100
commit5789572d977a77896efbeaf53c055904057f29c3 (patch)
tree1b0dcec60ced70feb757258397558eafa06a5f8c /common/rfb/Timer.cxx
parentf8e3b34c69b848781b958c7a4d21175ddc6f90d8 (diff)
downloadtigervnc-5789572d977a77896efbeaf53c055904057f29c3.tar.gz
tigervnc-5789572d977a77896efbeaf53c055904057f29c3.zip
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.
Diffstat (limited to 'common/rfb/Timer.cxx')
-rw-r--r--common/rfb/Timer.cxx1
1 files changed, 0 insertions, 1 deletions
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)) {