Skip to content

Commit

Permalink
PDFBOX-5660: fix logging exception parameter type
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1918830 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Jul 2, 2024
1 parent 5de33a3 commit 941cf8d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ protected void showGlyph(Matrix textRenderingMatrix, PDFont font, int code, Vect
}
catch (IOException ex)
{
LOG.error("Couldn't get bounds for code {} at position ({},{})", code,
at.getTranslateX(), at.getTranslateY(), ex);
LOG.error(() -> "Couldn't get bounds for code " + code + " at position (" +
at.getTranslateX() + "," + at.getTranslateY() + ")", ex);
}
if (bbox == null)
{
Expand Down

0 comments on commit 941cf8d

Please sign in to comment.