Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public GFPDCIDFont(PDFont font, RenderingMode renderingMode, String externalFont
this.fontProgramParsed = program.isSuccessfulParsing();
this.pdFont.setSuccessfullyParsed(program.isSuccessfulParsing());
} catch (IOException e) {
LOGGER.log(Level.FINE, "Can't parse font program of font " + font.getName(), e);
LOGGER.log(Level.WARNING, "Can't parse font program of font " + font.getName(), e);
this.fontProgramParsed = false;
this.pdFont.setSuccessfullyParsed(false);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public GFPDTrueTypeFont(org.verapdf.pd.font.truetype.PDTrueTypeFont font,
this.fontProgramParsed = program.isSuccessfulParsing();
this.pdFont.setSuccessfullyParsed(program.isSuccessfulParsing());
} catch (IOException e) {
LOGGER.log(Level.FINE, "Can't parse font program of font " + font.getName(), e);
LOGGER.log(Level.WARNING, "Can't parse font program of font " + font.getName(), e);
this.fontProgramParsed = false;
this.pdFont.setSuccessfullyParsed(false);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public GFPDType1Font(org.verapdf.pd.font.type1.PDType1Font pdFont,
this.fontProgramParsed = program.isSuccessfulParsing();
this.pdFont.setSuccessfullyParsed(program.isSuccessfulParsing());
} catch (IOException e) {
LOGGER.log(Level.FINE, "Can't parse font program of font " + pdFont.getName(), e);
LOGGER.log(Level.WARNING, "Can't parse font program of font " + pdFont.getName(), e);
this.fontProgramParsed = false;
this.pdFont.setSuccessfullyParsed(false);
}
Expand Down