Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #12 from ryanwinter/remove_error
Browse files Browse the repository at this point in the history
Converted error to debug for expected device output
  • Loading branch information
ryanwinter authored Apr 26, 2022
2 parents 5d645f6 + fbccba2 commit 22a7369
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/rainforest_emu_2/emu2.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def _process_reply(self, xml_str: str) -> None:
wrapped = itertools.chain('<Root>', xml_str, '</Root>')
root = ElementTree.fromstringlist(wrapped)
except ElementTree.ParseError:
_LOGGER.error("Malformed XML: %s", xml_str)
_LOGGER.debug("Malformed XML: %s", xml_str)
return

for tree in root:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/rainforest_emu_2/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"pyserial-asyncio==0.6"
],
"iot_class": "local_polling",
"version": "1.1.5",
"version": "1.1.6",
"config_flow": true,
"usb": [
{
Expand Down

0 comments on commit 22a7369

Please sign in to comment.