Open the file [jdk_install_dir]/jre/lib/logging.properties, scroll down and edit the next line at the bottom
java.util.logging.ConsoleHandler.level = INFO
at
java.util.logging.ConsoleHandler.level = ALL
and add the following two lines to the very bottom
javax.faces.level = ALL
com.sun.faces.level = ALL
The first includes all the logging for the JSF API, and the second for the JSF impl, assuming you are using Mojarra.
source
share