Are you facing this warning or an error?
SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”.
SLF4J: Defaulting to no-operation (NOP) logger implementation
Often, SLF4J serves as a simple facade for multiple Java logging frameworks such as Log4j2 or Logback. Overall, the error message “Failed to Load Class org.slf4j.impl.StaticLoggerBinder” implies that SLF4J cannot identify and load the StaticLoggerBinder class into memory.
There could be several causes, but the most common is adding only slf4j-api to the classpath without an appropriate binding implementation.
Please keep in mind that, in 1.6.0, SLF4J defaults to a no-operation (NOP) logger implementation when there is no dependency for static binding. However, 2.0.x versions no longer honor the inert binder and instead use the ServiceLoader method.
One of the ways to fix the error is to add the missing dependency to add slf4j-simple: