aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranoosh <uinarf@autistici.org>2026-01-09 15:11:09 +0100
committerFranoosh <uinarf@autistici.org>2026-01-09 15:11:09 +0100
commitef10ae72ec6b4f9fedace24edf0f931f7077e628 (patch)
tree8693ab896aebd2cf619651fb0701619b5c92e827
parent1d230afcdf487230467d65a857f943d61a98b501 (diff)
downloadZeroMQ_Video_Streaming-ef10ae72ec6b4f9fedace24edf0f931f7077e628.tar.gz
ZeroMQ_Video_Streaming-ef10ae72ec6b4f9fedace24edf0f931f7077e628.tar.bz2
ZeroMQ_Video_Streaming-ef10ae72ec6b4f9fedace24edf0f931f7077e628.zip
Remove excessive logging from client.py
-rw-r--r--client.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/client.py b/client.py
index 58fed68..2c1b372 100644
--- a/client.py
+++ b/client.py
@@ -261,14 +261,11 @@ class ClientVideo(Thread):
sample_frames = self.frame_deque[0][0], self.frame_deque[-1][0]
try:
contours = compute_contours(sample_frames)
- # logger.debug("ClientVideo %r: Found %d contours.", self.identity, len(contours))
- # logger.debug("ClientVideo %r: Contours: %r", self.identity, contours)
except Exception as exc:
logger.error("ClientVideo %r: Error computing contours: %r", self.identity, exc)
continue
try:
movement_now = detect_movement(contours, min_area=self.device_threshold)
- # logger.debug("ClientVideo %r: Movement detected in frame.", self.identity)
except Exception as exc:
logger.error("ClientVideo %r: Error detecting movement: %r", self.identity, exc)
continue