org.apache.fop.apps.FOUserAgent logging

3
Is there a way to disable the logging of this component? In earlier posts Bas van den Broek expressed that he was not convinced of the usefulness of this logging. In my case it fills the logfiles with quite a lot of unnecessary info. I'd really like to get rid of that logging OR have clearer pointers on how to solve the issues. Examples of issues in my logfiles: May 16 15:35:04 127.0.0.1 xxx: WARNING - org.apache.fop.apps.FOUserAgent: Font "Symbol,normal,700" not found. Substituting with "Symbol,normal,400". May 16 15:35:04 127.0.0.1 xxx: WARNING - org.apache.fop.apps.FOUserAgent: Font "ZapfDingbats,normal,700" not found. Substituting with "ZapfDingbats,normal,400". May 16 15:35:04 127.0.0.1 xxx: WARNING - org.apache.fop.apps.FOUserAgent: Content overflows the viewport of the fo:region-after on page 1 in block-progression direction by 91200 millipoints. (See position 5:329)
asked
1 answers
1

I have had the warning about content that overflows the viewport numerous times. Most of the times it concerned a label that was to big to fit in a table cell, although not always obvious when looking at the output

The information that I found regarding the font warning says that you trying to use a bold font but the font-weight of bold (700) is not available so it is changed to the normal font-weigh (400). Perhaps this gives you a clue to debug.

answered