Enabling Flying Saucer java.util.logging Exit

I am compiling PDF using iText and Flying Saucer, and unfortunately I cannot get any output from Flying Saucer when compiling. I really would like to see what happens inside to be able to debug the current problem that I am facing.

How to enable java.util.logging for Flying Saucer? I am currently using SLF4J / Logback.

+4
source share
1 answer

Found:

System.getProperties().setProperty("xr.util-logging.loggingEnabled", "true"); XRLog.setLoggingEnabled(true); 
+9
source

Source: https://habr.com/ru/post/1401706/


All Articles