Spring Boot Test ignores logging.level

后端 未结 6 774
独厮守ぢ
独厮守ぢ 2020-12-13 01:59

One of my maven module ignores my logging levels when running tests.

In src/test/resources I have application.properties:

app         


        
6条回答
  •  既然无缘
    2020-12-13 02:25

    If your tests are annotated with @DataJpaTest you can switch Hibernate SQL logging off with:

    @DataJpaTest(showSql=false)
    public class MyTest {
      ..
    }
    

提交回复
热议问题