How to Enabling JSF logging when running a JSF page
How to Enabling JSF logging when running a JSF page?
i read the source code LifecycleImpl if (LOGGER.isLoggable(Level.FINE)) { LOGGER.fine("execute(" + context + ")"); } but the default log leave is Level.Info. So i want to know How to set Logger leave when running a JSF page?
0