我正在尝试为maven项目启用打印调试信息。我将log4j添加为pom.xml
的依赖项,并将log4j.properties
以及log4j2.properties
添加到rootloger=DEBUG, sdout
到src/main/resources
文件夹。然后在所需的课程中,我在所需的课程中启动一个记录器' org.pakage1.ClassA'并添加logger.debug()
行,但我的领事中没有显示任何内容。当我选中logger.isDebugEnabled()
时,它会返回false
的pom.xml
<dependencies>
.....
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.25</version>
</dependency>
log4j.properties 以及类似的log4j2
log4j.debug=true
log4j.rootLogger=DEBUG, stdout
log4j.appender.Stdout.threshold=debug
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%-5p %d [%t] %c{1} - %m%n
作为额外步骤我尝试添加
log4j.logger.extendedsldnf.ExtendedSLDNFEvaluator=DEBUG
但它也没有用。
package package1;
......
class ClassA{
private Logger logger = LoggerFactory.getLogger(getClass());
......
public static void main(String []args){
logger.debug("message");
}
}
知道我正在收到警告
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]
此外,该项目还有其他子模块,这些子模块也同样启用了日志记录,并且在log4j.properties
文件
有什么遗失的吗?如何检查是否存在冲突?
答案 0 :(得分:1)
添加了log4j.properties以及log4j2.properties
第一个是log4j 1,第二个是log4j 2。 声明两者并不是解决问题的方法 仅使用与您的实际log4j版本匹配的那个。
SLF4J:类路径包含多个SLF4J绑定。 SLF4J:实际 绑定是类型 [ch.qos.logback.classic.util.ContextSelectorStaticBinder]
确实,问题非常明确:您希望将log4J实现用作SLF4J绑定但您在运行时在类路径中至少有另一个SLF4J绑定。这里提到了Logback中的ContextSelectorStaticBinder
,它是另一个绑定
您必须在运行时在类路径中为SLF4J提供单个实现/绑定。
要解决您的问题,这很简单
当您使用Maven时,我建议您从应用程序的agreggator pom执行mvn dependency:tree
命令,或者如果您没有agreggator pom,请从打包应用程序的pom执行。{
此命令将作为输出写入依赖项(包括由pom提取的传递依赖项)。
它会输出类似的内容:
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ Test-Spring-Boot ---
[INFO] Test-Spring-Boot:Test-Spring-Boot:jar:0.0.1-SNAPSHOT
[INFO] \- org.springframework.boot:spring-boot-starter-web:jar:1.4.4.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter:jar:1.4.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot:jar:1.4.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.4.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-logging:jar:1.4.4.RELEASE:compile
[INFO] | | +- ch.qos.logback:logback-classic:jar:1.1.9:compile
[INFO] | | | +- ch.qos.logback:logback-core:jar:1.1.9:compile
[INFO] | | | \- org.slf4j:slf4j-api:jar:1.7.22:compile
[INFO] | | +- org.slf4j:jcl-over-slf4j:jar:1.7.22:compile
[INFO] | | +- org.slf4j:jul-to-slf4j:jar:1.7.22:compile
[INFO] | | \- org.slf4j:log4j-over-slf4j:jar:1.7.22:compile
[INFO] | +- org.springframework:spring-core:jar:4.3.6.RELEASE:compile
[INFO] | \- org.yaml:snakeyaml:jar:1.17:runtime
[INFO] +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.4.4.RELEASE:compile
[INFO] | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.5.11:compile
[INFO] | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.5.11:compile
[INFO] | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.5.11:compile
[INFO] +- org.hibernate:hibernate-validator:jar:5.2.4.Final:compile
[INFO] | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | +- org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
[INFO] | \- com.fasterxml:classmate:jar:1.3.3:compile
[INFO] +- com.fasterxml.jackson.core:jackson-databind:jar:2.8.6:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.8.6:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-core:jar:2.8.6:compile
[INFO] +- org.springframework:spring-web:jar:4.3.6.RELEASE:compile
[INFO] | +- org.springframework:spring-aop:jar:4.3.6.RELEASE:compile
[INFO] | +- org.springframework:spring-beans:jar:4.3.6.RELEASE:compile
[INFO] | \- org.springframework:spring-context:jar:4.3.6.RELEASE:compile
[INFO] \- org.springframework:spring-webmvc:jar:4.3.6.RELEASE:compile
[INFO] \- org.springframework:spring-expression:jar:4.3.6.RELEASE:compile
您只需要确定从哪里获取回归依赖项
一旦识别出它,如果它是从我们自己的pom明确声明的依赖项,则删除它的依赖关系。
如果它是传递依赖,use the exclusion dependency mechanism of Maven。
答案 1 :(得分:1)
如果你想使用log4j appender打印slf4j logger的日志,请确保你有slf4j-log4j12 jar并删除logback jar,否则无论你使用log4j还是logback,它都将无法控制。 / p>