Skip to content

Commit

Permalink
change logged line from info to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Jun 24, 2024
1 parent 5644b06 commit edd9ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/evohomeasync2/broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ async def get(self, url: str, schema: vol.Schema | None = None) -> _EvoSchemaT:
try:
content = schema(content)
except vol.Invalid as err:
self._logger.info(f"Response JSON may be invalid: GET {url}: {err}")
self._logger.warning(f"Response JSON may be invalid: GET {url}: {err}")

return content

Expand Down

0 comments on commit edd9ad3

Please sign in to comment.