prediction_subscriber.py: removed message logging

This commit is contained in:
appleb_m
2026-06-11 16:14:38 +02:00
parent a18735824c
commit a88423d413
@@ -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