michaelklishin/langohr

Log warning

rafacustodio opened this issue · 4 comments

I'm not using log at my project, but everytime when I start it gives me a warning about slf4j, I'm trying to find it but unfortunately with no success

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.

Someone can help me out?

PS: This does not happen at 3.7.0 version

Anything?

RabbitMQ Java client does not have a SLF4J implementation on class path and thus results to a no-op implementation. Java client versions prior to 4.0 did not use SLF4J (which is an industry standard common logging interface in the Java ecosystem).

Just noticed that SLF4J mentions this exact warning on their main doc manual page.