gpt4 book ai didi

java - logback.xml 在普通 Java 项目中被忽略

转载 作者:行者123 更新时间:2023-11-29 03:27:17 26 4
gpt4 key购买 nike

显然,我的 Java 项目中没有发生日志记录。 logback.xml 文件位于类路径中,但显然被忽略了。没有报告有关此文件的任何错误。

JAR 以下列方式附加(使用 maven):

    <dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.13</version>
</dependency>

以下消息出现在控制台中:

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:MYREPO/org/slf4j/slf4j-simple/1.7.5/slf4j-simple-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:MYREPO/ch/qos/logback/logback-classic/1.0.13/logback-classic-1.0.13.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.SimpleLoggerFactory]

显然,这两个 jar 都是由单个 maven 条目引用的。

最佳答案

你好像有

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.5</version>
</dependency>

摆脱它。 logback 已经提供了你需要的类。

关于java - logback.xml 在普通 Java 项目中被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20362968/

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