1. 程式人生 > >SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".解決辦法

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".解決辦法

異常如圖:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

解決辦法:

新增你slf4j對應版本的slf4j-nop的maven依賴

<dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-nop</artifactId>
            <version>1.7.7</version>
        </dependency>