I have developed a SpringBoot 2.1.3
WebApp with Thymeleaf 3
. For quick testing purpose I create a fat jar with two SQL Procedure
which automatically create the DB if it is not present and fill typological table if they are empty.
Now I put my .jar
in a CentOS server and launch it by the command:
java -jar mywebapp.jar
All works perfectly but I find a bug in a form submit and I would like to examine the server (embedded) logs.
Which logging level
I have to use in the below configuration inside the application.properties
:
logging.level.org.apache.tomcat=?
logging.level.org.apache.catalina=?
And where I can find the log
text file inside a Unix machine?
Thank you