Skip to content

Commit

Permalink
PDFBOX-5911: optimize logging
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1922223 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Nov 29, 2024
1 parent 98928fb commit e90456a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public int print(Graphics graphics, PageFormat pageFormat, int pageIndex)
if (dpi == -1)
{
dpiScale = (float) graphics2D.getTransform().getScaleX();
LOG.debug("dpi set to " + Math.round(graphics2D.getTransform().getScaleX() * 72));
LOG.debug("dpi set to {}", Math.round(graphics2D.getTransform().getScaleX() * 72));
}
else
{
Expand Down

0 comments on commit e90456a

Please sign in to comment.