diff --git a/frigate/detectors/detector_config.py b/frigate/detectors/detector_config.py index c3b56dc6a8..e949065b4c 100644 --- a/frigate/detectors/detector_config.py +++ b/frigate/detectors/detector_config.py @@ -119,7 +119,6 @@ def check_and_load_plus_model( def compute_model_hash(self) -> None: if not self.path or not os.path.exists(self.path): - print("File does not exist or path is empty.") self._model_hash = hashlib.md5(b"unknown").hexdigest() else: with open(self.path, "rb") as f: