Closed
Description
Reload4j is the continuation of Log4j 1 for those affected by log4shell.
It would be better to use a more recent version of an Slf4j binding such as logback
, log4j2
, or slf4j-simple
.
Matter of fact, defining an slf4j
binding in a library is a bit of an anti-pattern. Consumers such applications do require explicit bindings, libraries do not.
However, a binding may be needed for testing. Thus changing the scope of the logging binding to test
would be better.
IF the logging binding is indeed intended for just testing I'd suggest going with slf4j-simple
as it's the easiest (no more deps) to use.