diff options
| author | Franoosh <uinarf@autistici.org> | 2026-01-09 15:11:09 +0100 |
|---|---|---|
| committer | Franoosh <uinarf@autistici.org> | 2026-01-09 15:11:09 +0100 |
| commit | ef10ae72ec6b4f9fedace24edf0f931f7077e628 (patch) | |
| tree | 8693ab896aebd2cf619651fb0701619b5c92e827 | |
| parent | 1d230afcdf487230467d65a857f943d61a98b501 (diff) | |
| download | ZeroMQ_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.py | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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 |
