Skip to content

Commit e69b38a

Browse files
authored
Fix log in onedrive (home-assistant#147029)
1 parent ed95033 commit e69b38a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homeassistant/components/onedrive/coordinator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async def _async_update_data(self) -> Drive:
6666
translation_domain=DOMAIN, translation_key="authentication_failed"
6767
) from err
6868
except OneDriveException as err:
69-
_LOGGER.debug("Failed to fetch drive data: %s")
69+
_LOGGER.debug("Failed to fetch drive data: %s", err, exc_info=True)
7070
raise UpdateFailed(
7171
translation_domain=DOMAIN, translation_key="update_failed"
7272
) from err

0 commit comments

Comments
 (0)