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

Commit

Permalink
tradefed: log error when parsing xml file
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Oliveira <[email protected]>
  • Loading branch information
chaws committed Feb 20, 2024
1 parent 0f7fba7 commit 053e30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tradefed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def _extract_cts_results(self, buf, testrun, suite_prefix):
element.clear()

except ET.ParseError as e:
logger.warning(e)
logger.error(f"[CTS/VTS] Error extracting cases: {e}")
return None

# Process remaining test cases that didn't make to the last chunk
Expand Down

0 comments on commit 053e30f

Please sign in to comment.