点击左上角,关注:“锅外的大佬”
专注分享国外最新技术内容
帮助每位开发者更优秀地成长

1.概览

该教程中,我将向你展示:如何在测试时设置spring boot 日志级别。虽然我们可以在测试通过时忽略日志,但是如果需要诊断失败的测试,选择正确的日志级别是非常重要的。

2.日志级别的重要性

正确设置日志级别可以节省我们许多时间。 举例来说,如果测试在CI服务器上失败,但在开发服务器上时却通过了。我们将无法诊断失败的测试,除非有足够的日志输出。 为了获取正确数量的详细信息,我们可以微调应用程序的日志级别,如果发现某个java包对我们的测试更加重要,可以给它一个更低的日志级别,比如DEBUG。类似地,为了避免日志中有太多干扰,我们可以为那些不太重要的包配置更高级别的日志级别,例如INFO或者ERROR。 一起来探索设置日志级别的各种方法吧!

3. application.properties中的日志设置

如果想要修改测试中的日志级别,我们可以在 src/test/resources/application.properties设置属性:
  1. logging.level.com.baeldung.testloglevel=DEBUG
该属性将会为指定的包 com.baeldung.testloglevel设置日志级别。 同样地,我们可以通过设置 root日志等级,更改所有包的日志级别
  1. logging.level.root=INFO
现在通过添加REST端点写入日志,来尝试下日志设置。
  1. @RestController
  2. publicclassTestLogLevelController{
  3. privatestaticfinalLogger LOG =LoggerFactory.getLogger(TestLogLevelController.class);
  4. @Autowired
  5. privateOtherComponent otherComponent;
  6. @GetMapping("/testLogLevel")
  7. publicString testLogLevel(){
  8. LOG.trace("This is a TRACE log");
  9. LOG.debug("This is a DEBUG log");
  10. LOG.info("This is an INFO log");
  11. LOG.error("This is an ERROR log");
  12. otherComponent.processData();
  13. return"Added some log output to console...";
  14. }
  15. }
正如所料,如果我们在测试中调用这个端点,我们将可以看到来自 TestLogLevelController的调试日志。
  1. 2019-04-0114:08:27.545 DEBUG 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis a DEBUG log
  2. 2019-04-0114:08:27.545 INFO 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an INFO log
  3. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an ERROR log
  4. 2019-04-0114:08:27.546 INFO 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an INFO log from another package
  5. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an ERROR log from another package
这样设置日志级别十分简单,如果测试用 @SpringBootTest注解,那么我们肯定应该这样做。但是,如果不使用该注解,则必须以另一种方式配置日志级别。

3.1 基于Profile的日志设置

尽管将配置放在 src\test\application.properties在大多数场景下好用,但在某些情况下,我们可能希望为一个或一组测试设置不同的配置。 在这种情况下,我们可以使用 @ActiveProfiles注解向测试添加一个 SpringProfile:
  1. @RunWith(SpringRunner.class)
  2. @SpringBootTest(webEnvironment =WebEnvironment.RANDOM_PORT, classes =TestLogLevelApplication.class)
  3. @EnableAutoConfiguration(exclude =SecurityAutoConfiguration.class)
  4. @ActiveProfiles("logging-test")
  5. publicclassTestLogLevelWithProfileIntegrationTest{
  6. // ...
  7. }
日志设置将会存在 src/test/resources目录下的 application-logging-test.properties中:
  1. logging.level.com.baeldung.testloglevel=TRACE
  2. logging.level.root=ERROR
如果使用描述的设置调用 TestLogLevelCcontroller,将看到controller中打印的 TRACE级别日志,并且不会看到其他包出现INFO级别以上的日志。
  1. 2019-04-0114:08:27.545 DEBUG 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis a DEBUG log
  2. 2019-04-0114:08:27.545 INFO 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an INFO log
  3. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an ERROR log
  4. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an ERROR log from another package

4.配置Logback

如果使用Spring Boot默认的 Logback,可以在 src/test/resources目录下的 logback-text.xml文件中设置日志级别:
  1. <configuration>
  2. <includeresource="/org/springframework/boot/logging/logback/base.xml"/>
  3. <appendername="STDOUT"class="ch.qos.logback.core.ConsoleAppender">
  4. <encoder>
  5. <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
  6. </pattern>
  7. </encoder>
  8. </appender>
  9. <rootlevel="error">
  10. <appender-refref="STDOUT"/>
  11. </root>
  12. <loggername="com.baeldung.testloglevel"level="debug"/>
  13. </configuration>
以上例子如何在测试中为Logback配置日志级别。 root日志级别设置为INFO, com.baeldung.testloglevel包的日志级别设置为DEBUG。 再来一次,看看提交以上配置后的日志输出情况
  1. 2019-04-0114:08:27.545 DEBUG 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis a DEBUG log
  2. 2019-04-0114:08:27.545  INFO 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an INFO log
  3. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an ERROR log
  4. 2019-04-0114:08:27.546  INFO 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an INFO log from another package
  5. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an ERROR log from another package

4.1 基于Profile配置Logback

另一种配置指定Profile文件的方式就是在 application.properties文件中设置 logging.config属性:
  1. logging.config=classpath:logback-testloglevel.xml
或者,如果想在classpath只有一个的Logback配置,可以在 logbacl.xml使用 springProfile属性。
  1. <configuration>
  2. <includeresource="/org/springframework/boot/logging/logback/base.xml"/>
  3. <appendername="STDOUT"class="ch.qos.logback.core.ConsoleAppender">
  4. <encoder>
  5. <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
  6. </pattern>
  7. </encoder>
  8. </appender>
  9. <rootlevel="error">
  10. <appender-refref="STDOUT"/>
  11. </root>
  12. <springProfilename="logback-test1">
  13. <loggername="com.baeldung.testloglevel"level="info"/>
  14. </springProfile>
  15. <springProfilename="logback-test2">
  16. <loggername="com.baeldung.testloglevel"level="trace"/>
  17. </springProfile>
  18. </configuration>
现在使用 logback-test1配置文件调用 TestLogLevelController,将会获得如下输出:
  1. 2019-04-0114:08:27.545  INFO 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an INFO log
  2. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an ERROR log
  3. 2019-04-0114:08:27.546  INFO 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an INFO log from another package
  4. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an ERROR log from another package
另一方面,如果更改配置为 logback-test2,输出将变成如下:
  1. 2019-04-0114:08:27.545 DEBUG 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis a DEBUG log
  2. 2019-04-0114:08:27.545  INFO 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an INFO log
  3. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an ERROR log
  4. 2019-04-0114:08:27.546  INFO 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an INFO log from another package
  5. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an ERROR log from another package

5.可选的Log4J

另外,如果我们使用 Log4J2,我们可以在 src\main\resources目录下的 log4j2-spring.xml文件中配置日志等级。
  1. <Configuration>
  2. <Appenders>
  3. <Consolename="Console"target="SYSTEM_OUT">
  4. <PatternLayout
  5. pattern="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n"/>
  6. </Console>
  7. </Appenders>
  8. <Loggers>
  9. <Loggername="com.baeldung.testloglevel"level="debug"/>
  10. <Rootlevel="info">
  11. <AppenderRefref="Console"/>
  12. </Root>
  13. </Loggers>
  14. </Configuration>
我们可以通过 application.properties中的 logging.config属性来设置Log4J 配置的路径。
  1. logging.config=classpath:log4j-testloglevel.xml
最后,查看使用以上配置后的输出:
  1. 2019-04-0114:08:27.545 DEBUG 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis a DEBUG log
  2. 2019-04-0114:08:27.545  INFO 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an INFO log
  3. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.testloglevel.TestLogLevelController:Thisis an ERROR log
  4. 2019-04-0114:08:27.546  INFO 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an INFO log from another package
  5. 2019-04-0114:08:27.546 ERROR 56585---[nio-8080-exec-1] c.b.component.OtherComponent:Thisis an ERROR log from another package

6.结论

在本文中,我们学习了如何在Spring Boot测试应用程序时设置日志级别,并探索了许多不同的配置方法。在 SpringBoot应用程序中使用 application.properties设置日志级别是最简便的,尤其是当我们使用@SpringBootTest注解时。 与往常一样,这些示例的源代码都在GitHub上。
原文链接:https://www.baeldung.com/spring-boot-testing-log-level
作者:baeldung
译者:Leesen




点击在看,和我一起帮助更多开发者!
继续阅读
阅读原文