gpt4 book ai didi

logback - 无法抑制来自 scalatest-maven-plugin 的过多日志

转载 作者:行者123 更新时间:2023-12-03 21:24:58 25 4
gpt4 key购买 nike

Background



当我从 maven 运行 scala 测试时,我正面临来自默认 Logger 的过多日志记录,因为它没有使用正确的日志记录定义在类路径上获取 logback.xml

所以我的 maven 配置相当通用(根据 scalatest-maven-plugin 文档)
看起来像这样
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<!-- enable scalatest -->
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<junitxml>.</junitxml>
<filereports>MyProj_TestSuite.txt</filereports>
<forkMode>never</forkMode>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>

我的 src/main/resources 中有一个 logback.xml,它被复制到目标/类

Things I tried so far



花了一整天的时间来弄清楚为什么没有被选中 - 使用以下配置可选条目
<runpath>
${project.basedir}/target/classes
</runpath>

<systemProperties>
<logback.configurationFile> ${project.basedir}/src/main/resources/logback.xml</logback.configurationFile>
</systemProperties>

<argLine>
-Dlogback.configurationFile=src/main/resources/logback.xml
</argLine>

如果我从 ${project.basedir} 像这样(从命令行)运行它

mvn test -Dlogback.configurationFile=./src/test/resources/logback.xml



有用

我在堆栈上看过类似的问题,甚至尝试添加这个
    <build>
<testResources>
<testResource>
<directory>${project.basedir}/target/classes</directory>
</testResource>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
</testResource>
</testResources>
</build>

这不起作用 - 我认为这是因为我正在使用 scala-maven-test 插件,它有它的 own configuration block.

任何有关如何从 pom.xml 内部执行此操作的帮助将不胜感激。

最佳答案

尝试拥有 /src/test/resources/logback-test.xml回滚配置文件。
它对我有用 scalatest-maven-plugin 2.0.2 版本。

关于logback - 无法抑制来自 scalatest-maven-plugin 的过多日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48898184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com