views:

47

answers:

1

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

+2  A: 

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

Bozhidar Batsov