Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion custom_components/vector/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,15 @@ async def _async_camera_stream_loop(self) -> None:
if _is_unauthenticated_error(err):
await self._async_handle_auth_failure("camera stream", err)
continue
_LOGGER.warning("Vector camera stream interrupted: %s", err)
details = str(err).strip()
if details:
_LOGGER.debug("Vector camera stream interrupted: %s", details)
else:
_LOGGER.debug(
"Vector camera stream interrupted (%s)",
err.__class__.__name__,
exc_info=True,
)
await asyncio.sleep(_CAMERA_RECONNECT_DELAY_SECONDS)
finally:
if stream is not None:
Expand Down
Loading