java.util.logging.config.file property is used to specify logging properties file to use. In my case tomcat uses ${catalina.base}/conf/logging.properties normally. Tomcat reads configuration from file above. The problem I face is I can't see any console output in tomcat log files.
I'm using
private static final java.util.logging.Logger LOGGER = java.util.logging.Logger.getLogger(MyClass.class.getName());
LOGGER.log(Level.INFO, "log message);
style to log in my java web application.
I start tomcat 8.0.21 from startup.bat (project requirement) on windows 10. I can see all...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.