Using Spring Boot 1.4 together with Logback, I configure the logging in the application.yml:
logging: level: org.hibernate.SQL: INFO com.netflix.eureka: OFF Note that the recommendation for the second configuration comes straight from the Spring Cloud Service Registration and Discovery documentation. It works quite well for INFO and other ‘normal’ levels. However, the log also shows (reformatted by me):
… o.s.cloud.logging.LoggingRebinder : Cannot set level: false for 'org.hibernate.engine.internal.StatisticalLoggingSessionEventListener' Now, false is a very interesting level, isn’t it? How can I disable a logger completely?