Can't avoid hibernate logging SQL to console with Spring Boot and Logback

后端 未结 5 1650
失恋的感觉
失恋的感觉 2020-12-15 05:23

My Spring Boot application keeps showing Hibernate queries in the console despite having configured Hibernate\'s specific logging with Logback as follows:

&l         


        
5条回答
  •  执笔经年
    2020-12-15 05:38

    In case anyone has tried all the above and still has issues, try setting the property:

    logging.level.org.hibernate.SQL=OFF
    

提交回复
热议问题