Skip to content

Commit

Permalink
Add error log when the Android XML post processing fails
Browse files Browse the repository at this point in the history
  • Loading branch information
ja-openai committed Sep 30, 2024
1 parent c621606 commit 1a71427
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@ public String execute(String xmlContent) {
return processedXmlContent;

} catch (ParserConfigurationException | SAXException | IOException | TransformerException e) {
logger.error("Can't post-process Android XML:\n{}", xmlContent);
throw new RuntimeException(e);
}
}
Expand Down

0 comments on commit 1a71427

Please sign in to comment.