其他分享
首页 > 其他分享> > 打包时TestNg报错 SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".

打包时TestNg报错 SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".

作者:互联网

在pom文件添加一下即可解决

 

 

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <version>1.7.25</version>
            <scope>compile</scope>
        </dependency>

 

标签:load,1.7,StaticLoggerBinder,slf4j,报错,org
来源: https://www.cnblogs.com/tiansc1/p/15726796.html