From df3d08b9594d80073b0155a371d001ef19bae587 Mon Sep 17 00:00:00 2001 From: Esa Korhonen Date: Wed, 26 Sep 2018 14:03:08 +0300 Subject: [PATCH] Remove spammy debug print The code was ran even when nothing was really going on and constantly wrote to the log. --- maxutils/maxbase/src/worker.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/maxutils/maxbase/src/worker.cc b/maxutils/maxbase/src/worker.cc index acbce793f..2a93a25dd 100644 --- a/maxutils/maxbase/src/worker.cc +++ b/maxutils/maxbase/src/worker.cc @@ -808,9 +808,6 @@ void Worker::poll_waitevents() m_statistics.evq_max = nfds; } - MXB_DEBUG("%lu [poll_waitevents] epoll_wait found %d fds", - pthread_self(), - nfds); mxb::atomic::add(&m_statistics.n_pollev, 1, mxb::atomic::RELAXED); m_state = PROCESSING;