prediction_subscriber.py: removed message logging
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user