Which logger framework in java shall one use based on performance and consistency criterion? I need to use it in highly concurrent application and do not wish to use any log wrappers.

Please suggest based on these requirements.

-Vaibhav

link|improve this question

50% accept rate
What do you mean by "consistency"? – Stephen C Jun 10 '10 at 9:58
feedback

3 Answers

I'd recommend Logback - intended as a successor to the popular log4j project. It's fast, generic and reliable.

link|improve this answer
feedback

Dont use any logging framework.

link|improve this answer
feedback

Check SL4J - Simple Logging Facade for Java

http://www.slf4j.org

It's very easy to implement and (from its page)

SLF4J serves as a simple facade or abstraction for various logging frameworks

It then can be used then with lockback, log4j, etc..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.