Skip to content

Commit

Permalink
Small fix on the logger
Browse files Browse the repository at this point in the history
  • Loading branch information
guerrerotook committed Feb 14, 2022
1 parent 18ca1e6 commit a91f9de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
Expand Down

0 comments on commit a91f9de

Please sign in to comment.