Spring Boot - Logging
Given this Spring Boot code snippet:
If the log level is set to INFO, which messages will appear in the logs?
logger.debug("Debug message");
logger.info("Info message");
logger.error("Error message");If the log level is set to INFO, which messages will appear in the logs?
