Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am pretty new to java logging mechanisms, and I am now trying to use apache commons logging for my project. It's a Java EE project and the EAR file is deployed to WebLogic server. Basically, I want to use java.util.logging implementation, and I have commons-logging.properties file defined as below

handlers = java.util.logging.ConsoleHandler, java.util.logging.FileHandler

java.util.logging.FileHandler.pattern = testLog.log
java.util.logging.FileHandler.limit = 50000
java.util.logging.FileHandler.count = 1
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
java.util.logging.FileHandler.level=SEVERE

java.util.logging.ConsoleHandler.level=SEVERE
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter

For the packaging, I've put commons-logging.properties file to the lib directory of my EAR file. However, all my loggin output is printed toconsole instead of the log file specified in the configuration. Could anyone provide any suggestion or did I miss out anything in my configuration?

share|improve this question
1  
Use slf4j techblog.bozho.net/?p=503 – Bozho Nov 15 '11 at 8:18
1  
Yes, use slf4j + logback logback.qos.ch – Vladislav Bauer Nov 15 '11 at 8:21
Agree with @Bozho, go for slf4j. And don't waste your time with java.util.logging -- logback is great. – kyle_wm Nov 15 '11 at 8:23
@Kyle Mahan, you have justify your statement on why not to use java.util.logging vs SLF4J. – Buhake Sindi Nov 15 '11 at 8:25
@The Elite Gentleman: From the official web site: The Simple Logging Facade for Java or (SLF4J) serves as a simple facade or abstraction for various logging frameworks, e.g. java.util.logging, log4j and logback, allowing the end user to plug in the desired logging framework at deployment time. - So you can change logging implementation when you need it. – Vladislav Bauer Nov 15 '11 at 8:30
show 2 more comments

2 Answers

According to the user guide, commons-logging.properties must exists in the CLASSPATH.

share|improve this answer
Yes, that's why I've put the properties file in the lib directory of my EAR file. Any suggestion on that? – K Hein Nov 15 '11 at 8:30
I would suggest moving it to classes, then it's found in the ClassLoader when pulled as a stream. – Buhake Sindi Nov 15 '11 at 8:36

Try to rename "common-logging.properties" file as "commons-logging.properties".

share|improve this answer
Sorry it was a typo :D The file name is commons-logging.properties. – K Hein Nov 15 '11 at 8:25

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.