我正在运行 Apache 速度模板引擎(2 个最新(
我不断收到来自SLF4J
的调试消息这会阻止用户查看重要消息,有没有办法抑制这些消息?
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/user1/Package/installer/lib/slf4j-simple-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/user1/Package/installer/lib/slf4j-simple-1.7.25.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]
消息警告您多个 SLF4J 类,
你有 2 个 slf4j jar slf4j-simple-1.7.5.jar
和 slf4j-simple-1.7.25.jar
它们都具有相同的类(StaticLoggerBinder(,
从依赖项中删除其中一个 jar,调试消息将消失。