Set Log Levels in Glassfish v3 (Using SLFJ4)
I am used to using Tomcat/Log4J for my logging. My current project is deployed to Glassfish v3 and I'm finding the logging set up to be painful. Searching has shown me I'm not the only one with frustrations.
I was able to get Log4J logging to a separate log file defined in my log4j.properties file. However, I would like to only have to view one log file. I am using SLF4J with the slf4j-jdk14 implementation and been able to get the log statements in the server.log file.
I would like to change the log levels for my classes but can't figure out how to do it in Glassfish/JUL. The Glassfish wiki (http://wiki.glassfish.java.net/Wiki.jsp?page=FaqConfigureLogging) states:
The primary interface 开发者_Python百科for configuring Glassfish logging is the Application Server -> Logging tab in the admin console.... Of special note here is the Properties section at the bottom of the page. These can be used to fine tune logging and, especially, change the logging levels of your own classes. If you use the java.util.logging system in your own application, then you can add properties here to affect your loggers directly.
Problem is there is no "Properties" section at the bottom of the page. How do you change the logging levels in v3?
EDIT: I should have clarified that I found the Configuraton -> Logger Settings page in the admin tool. However, it does not have a "Properties" section displayed. Perhaps this was removed in v3?
For v3 it is under Configuration->Logger Settings. (You may also need to add your logger to /yourdomain_folder/config/logging.properties file)
精彩评论