Question

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.

Was it helpful?

Solution

NOP means "no operation". Its purpose is not to do anything and thus not log anything.

OTHER TIPS

You could use the slf4j-simple implementation. It will log to the console.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top