Don't print error for requesting camera info (#13905)

This commit is contained in:
Nicolas Mowen 2024-09-23 07:49:34 -06:00 committed by GitHub
parent 0f813962be
commit af84af7b7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -569,7 +569,7 @@ class OnvifController:
def get_camera_info(self, camera_name: str) -> dict[str, any]:
if camera_name not in self.cams.keys():
logger.error(f"Onvif is not setup for {camera_name}")
logger.debug(f"Onvif is not setup for {camera_name}")
return {}
if not self.cams[camera_name]["init"]: