We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ae55b commit 1fcb5ffCopy full SHA for 1fcb5ff
plugwise/helper.py
@@ -78,7 +78,9 @@ def _find(xml_in: etree, locator: str) -> etree:
78
if xml_in is not None:
79
return xml_in.find(locator)
80
81
- LOGGER.error("XML data unexpectedly not present, processing stopped!")
+ LOGGER.warning(
82
+ "XML data unexpectedly not present, processing stopped. Please retry."
83
+ )
84
raise XMLDataMissingError
85
86
@@ -87,7 +89,9 @@ def _findall(xml_in: etree, locator: str) -> list[etree]:
87
89
88
90
return xml_in.findall(locator)
91
92
93
94
95
96
97
0 commit comments