Skip to content

Commit

Permalink
PDFBOX-5695: fix log statement as suggested by Axel Howind
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1913392 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
lehmi committed Oct 27, 2023
1 parent 3568825 commit 0e5fb6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public FDFAnnotationStamp(Element element) throws IOException
catch (XPathExpressionException e)
{
// should not happen
LOG.error("Error while evaluating XPath expression for appearance: {}", e);
LOG.error("Error while evaluating XPath expression for appearance: {}", e.getMessage(), e);
return;
}
byte[] decodedAppearanceXML;
Expand Down

0 comments on commit 0e5fb6b

Please sign in to comment.