Spring Boot - Logging
Given the following code snippet in a Spring Boot class:
What will be the visible output if the logging level is set to INFO?
private static final Logger logger = LoggerFactory.getLogger(App.class);
public void run() {
logger.info("Start running");
logger.debug("Debugging info");
logger.error("An error occurred");
}What will be the visible output if the logging level is set to INFO?
