diff --git a/custom_components/securitas/securitas_direct_new_api/apimanager.py b/custom_components/securitas/securitas_direct_new_api/apimanager.py index 22556bb..c953e15 100644 --- a/custom_components/securitas/securitas_direct_new_api/apimanager.py +++ b/custom_components/securitas/securitas_direct_new_api/apimanager.py @@ -94,7 +94,7 @@ async def _check_errros(self, value: str) -> bool: self.authentication_token = None _LOGGER.info("Login is expired. Login again") succeed: tuple[bool, str] = await self.login() - _LOGGER.debug("Re-loging result " + succeed[0]) + _LOGGER.debug("Re-loging result " + str(succeed[0])) return succeed[0] else: _LOGGER.error(error_item["message"])