mirror of
https://github.com/home-assistant/core.git
synced 2025-08-04 21:25:13 +02:00
Log traceback in debug for Sonos unsubscribe errors (#65596)
This commit is contained in:
@@ -400,7 +400,12 @@ class SonosSpeaker:
|
|||||||
)
|
)
|
||||||
for result in results:
|
for result in results:
|
||||||
if isinstance(result, Exception):
|
if isinstance(result, Exception):
|
||||||
_LOGGER.debug("Unsubscribe failed for %s: %s", self.zone_name, result)
|
_LOGGER.debug(
|
||||||
|
"Unsubscribe failed for %s: %s",
|
||||||
|
self.zone_name,
|
||||||
|
result,
|
||||||
|
exc_info=result,
|
||||||
|
)
|
||||||
self._subscriptions = []
|
self._subscriptions = []
|
||||||
|
|
||||||
@callback
|
@callback
|
||||||
|
Reference in New Issue
Block a user