diff options
author | Andres Freund | 2023-03-24 21:18:40 +0000 |
---|---|---|
committer | Andres Freund | 2023-03-24 21:18:40 +0000 |
commit | 642d8779768ecddc2917747940885d11f844f6e9 (patch) | |
tree | 96583a107662b57513b7b73495e07b0dd97ce9a1 /doc/src/sgml/docguide.sgml | |
parent | 3c05284d83b230728e59a25e828992037ef77096 (diff) |
docs: Explain how to silence overly verbose messages by fop
Reviewed-by: Tom Lane <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'doc/src/sgml/docguide.sgml')
-rw-r--r-- | doc/src/sgml/docguide.sgml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/src/sgml/docguide.sgml b/doc/src/sgml/docguide.sgml index 35c4afc81ad..261952085e2 100644 --- a/doc/src/sgml/docguide.sgml +++ b/doc/src/sgml/docguide.sgml @@ -374,6 +374,16 @@ ADDITIONAL_FLAGS='-Xmx1500m' </para> <para> + In its default configuration <productname>FOP</productname> will emit an + <literal>INFO</literal> message for each page. The log level can be + changed via <filename>~/.foprc</filename>: +<programlisting> +LOGCHOICE=-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog +LOGLEVEL=-Dorg.apache.commons.logging.simplelog.defaultlog=WARN +</programlisting> + </para> + + <para> Other XSL-FO processors can also be used manually, but the automated build process only supports FOP. </para> |