Reputation: 71
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.
Upvotes: 2
Views: 6953
Reputation: 5553
NOP means "no operation". Its purpose is not to do anything and thus not log anything.
Upvotes: 6
Reputation: 43758
You could use the slf4j-simple
implementation. It will log to the console.
Upvotes: 4