我正在运行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]
答案 0 :(得分:2)
消息警告您多个SLF4J 类
你有2个slf4j jars slf4j-simple-1.7.5.jar
和slf4j-simple-1.7.25.jar
都有相同的类(StaticLoggerBinder),
从依赖项中删除其中一个jar,调试消息将消失。