Google News
logo
Java Spring Boot - Interview Questions
How to enable debugging log in the spring boot application?
Debugging logs can be enabled in three ways :
 
* We can start the application with --debug switch.
* We can set the logging.level.root=debug property in application.property file.
* We can set the logging level of the root logger to debug in the supplied logging configuration file.
Advertisement