We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ca4dc5 commit 14e2516Copy full SHA for 14e2516
1 file changed
custom_components/vector/coordinator.py
@@ -712,7 +712,15 @@ async def _async_camera_stream_loop(self) -> None:
712
if _is_unauthenticated_error(err):
713
await self._async_handle_auth_failure("camera stream", err)
714
continue
715
- _LOGGER.warning("Vector camera stream interrupted: %s", err)
+ details = str(err).strip()
716
+ if details:
717
+ _LOGGER.debug("Vector camera stream interrupted: %s", details)
718
+ else:
719
+ _LOGGER.debug(
720
+ "Vector camera stream interrupted (%s)",
721
+ err.__class__.__name__,
722
+ exc_info=True,
723
+ )
724
await asyncio.sleep(_CAMERA_RECONNECT_DELAY_SECONDS)
725
finally:
726
if stream is not None:
0 commit comments