diff --git a/src/aare/gui/threads/prediction_subscriber.py b/src/aare/gui/threads/prediction_subscriber.py index 2a0e9f9f..175b66e9 100644 --- a/src/aare/gui/threads/prediction_subscriber.py +++ b/src/aare/gui/threads/prediction_subscriber.py @@ -158,12 +158,6 @@ class PredictionSubscriber(QThread): while self.running: try: parts = self._sock.recv_multipart() - self._debug_msg_count += 1 - debug_now = time.perf_counter() - if debug_now - self._debug_last_log_ts >= 1.0: - logger.info(f"PredictionSubscriber received {self._debug_msg_count} messages/s") - self._debug_msg_count = 0 - self._debug_last_log_ts = debug_now except zmq.Again: now = time.perf_counter() elapsed = now - self._fps_window_start