在普通的Java项目中忽略logback.xml

时间:2013-12-03 22:23:51

标签: java logging slf4j logback

显然,我的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]

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

1 个答案:

答案 0 :(得分:4)

你似乎有

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

摆脱它。 logback已经提供了您需要的课程。