Skip to content

Commit e90456a

Browse files
committed
PDFBOX-5911: optimize logging
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1922223 13f79535-47bb-0310-9956-ffa450edef68
1 parent 98928fb commit e90456a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pdfbox/src/main/java/org/apache/pdfbox/printing/PDFPrintable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public int print(Graphics graphics, PageFormat pageFormat, int pageIndex)
259259
if (dpi == -1)
260260
{
261261
dpiScale = (float) graphics2D.getTransform().getScaleX();
262-
LOG.debug("dpi set to " + Math.round(graphics2D.getTransform().getScaleX() * 72));
262+
LOG.debug("dpi set to {}", Math.round(graphics2D.getTransform().getScaleX() * 72));
263263
}
264264
else
265265
{

0 commit comments

Comments
 (0)