I am using Spring boot 1.3.1 with Tomcat built-in container. I am new to Spring download.
I run as a separate jar via java -jar myApp.jar .
I set the log file and tomcat location in application.properties :
logging.file=myApp.log server.tomcat.basedir=./tomcat
However, the application comes out quite often QUIETLY. The log file does not report any output.
So my question is how to enable more verbose application logging, or is it possible to use some method to troubleshoot this situation?
Thanks!
source share