From 3e3dbcf2519213bc841b00c7a6265c002a323c0c Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 5 Sep 2023 07:19:27 -0500 Subject: [PATCH] remove old logger statement --- frigate/ptz/autotrack.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frigate/ptz/autotrack.py b/frigate/ptz/autotrack.py index ba3d0f457..1fd7db375 100644 --- a/frigate/ptz/autotrack.py +++ b/frigate/ptz/autotrack.py @@ -240,11 +240,8 @@ class PtzAutoTracker: else: if zoom > 0: self.onvif._zoom_absolute(camera, zoom, 1) - self.onvif._move_relative(camera, pan, tilt, 0, 1) else: - logger.debug( - f"Not moving, pan and tilt too small: {pan}, {tilt}" - ) + self.onvif._move_relative(camera, pan, tilt, 0, 1) # Wait until the camera finishes moving while not self.ptz_metrics[camera]["ptz_stopped"].is_set():