Tag Archives: slf4j

SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”

Add the following dependency to pom.xml:

To add an implementation that prints log to std out use:

You can read more here

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-api</artifactId>
    <version>1.7.36</version>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-simple</artifactId>
    <version>1.7.36</version>
</dependency>

Reference:

http://stackoverflow.com/questions/7421612/slf4j-failed-to-load-class-org-slf4j-impl-staticloggerbinder