Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am newbie for the logging class in Java.util package, I have developed an Application and want to implement the logging mechanism at different levels, I am just thinking to which one to go for and identify the differences between these 2. I am looking 1) logger should be easily maintainable, implementable. Can any one suggest on this.

share|improve this question

1 Answer

java.util.logging is a poor API, on top of a poor implemention. Log4j is better in every measurable way.

If it's a new development, though, then there are better APIs than log4j, such as SLF4J, and better logging implementations, such as Logback. I would try those. Log4j is getting a bit long in the tooth, but it's perfectly serviceable.

share|improve this answer
1  
SLF4J is actually a logging facade so that one can switch between different logging implementations (e.g. util logging, log4j, logback etc) without modifying the code. – BalusC Feb 21 '10 at 17:46
Yes, that's why I called it an API :) – skaffman Feb 21 '10 at 18:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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