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

What is the easiest way to get started with log4j configuration?

share|improve this question
2  
Easiest way, in your main method do BasicConfigurator.configure( ); – Alexander Pogrebnyak Jan 24 '10 at 18:56
1  
@Alexander, your way is easiest but not always appropriate, when you work with frameworks (who doesn't work with frameworks nowadays) you don't get to write the main method. Sometimes as in spring or in servlets you can't even know in advance which piece of code is going to run first. – flybywire Jan 24 '10 at 19:27

3 Answers

up vote 8 down vote accepted

Put a file named log4j.properties in the root of your classpath:

log4j.rootLogger = ALL, Console
log4j.appender.Console=org.apache.log4j.ConsoleAppender
log4j.appender.Console.layout=org.apache.log4j.PatternLayout
log4j.appender.Console.layout.conversionPattern=%m%n

Nothing else is needed. Log4j will discover it and configure itself.

share|improve this answer

The absolute easiest way is to visit the log4j pages at apache and read the short introduction. They have a sample log4j.configuration ready to be copied and pasted.

share|improve this answer

It's worth reading the manual (at the risk of stating the obvious). There are a ton of configuration options, and once you learn and understand what's possible, then you can implement some very powerful logging systems.

share|improve this answer

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.