I get below error when I run a sample code like wordcount in Kafka Streams:
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.
I visited the link: https://www.slf4j.org/codes.html#StaticLoggerBinder and tried adding one of the slf4j-nop.jar slf4j-simple.jar, slf4j-log4j12.jar, slf4j-jdk14.jar as mentioned in that link. but it didn't help.
I read that issue is with embedded maven version in eclipse but I tried creating project from console but still I ran into same issue.
- Kafka Streams version - 0.11.0.0
- Maven version - 3.3.9
is anyone aware of this issue? My next steps would be installing different maven version and try it.