Browse Source

PFMFile is now also used inside FOP's normal operations, so don't log too much in "info" level.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@540042 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_94
Jeremias Maerki 17 years ago
parent
commit
c432f41561
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/java/org/apache/fop/fonts/type1/PFMFile.java

+ 2
- 2
src/java/org/apache/fop/fonts/type1/PFMFile.java View File

@@ -190,8 +190,8 @@ public class PFMFile {
int i = inStream.readShort();


if (log.isInfoEnabled()) {
log.info(i + " kerning pairs");
if (log.isDebugEnabled()) {
log.debug(i + " kerning pairs");
}
while (i > 0) {
int g1 = (int)inStream.readByte();

Loading…
Cancel
Save