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@1918829 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Jul 2, 2024
1 parent bf03952 commit 5de33a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private Object[][] getGlyphs(PDSimpleFont font) throws IOException
}
catch (IOException ex)
{
LOG.error("Couldn't render code {} ('{}') of font {}", index, glyphName,
LOG.error("Couldn't render code " + index + " ('" + glyphName + "') of font " +
font.getName(), ex);
glyphs[index][3] = new GeneralPath();
}
Expand Down

0 comments on commit 5de33a3

Please sign in to comment.