I want slf4j NOP
implementation to log to the console. Currently, it just doesnt log anything, instead is there a way to have it log to the console?
My use case is I have a library (not an app) which just depends on slf4j-api
. But some of the classes in there have main method for testing purposes. When I run those main methods, I want all the logs to go to the console without having to depend on slf4j-log4j
binding.
Thanks.
NOP means "no operation". Its purpose is not to do anything and thus not log anything.