How to Change Log Level in Spring Boot
Spring boot has no mandatory dependency on any of the logging implementations. Spring boot only depends on commons logging API interface. Commons logging API is a very thin bridge between logging clients and logging implementations. This enables application and framework writers to decouple application logging from actual logging implementations. Spring boot follows this approach and […]