Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 521 Bytes

avoid-slf4j-warnings.adoc

File metadata and controls

17 lines (13 loc) · 521 Bytes

Avoid SLF4J warnings

antq does not load org.slf4j.impl.StaticLoggerBinder by default, so you may get following messages depending on the project.

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.

To avoid this message, add the following to your dependency.

org.slf4j/slf4j-nop {:mvn/version "RELEASE"}