I have two property files in my default package (I'm using NetBeans):

commons-logging.properties with property:

org.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger

and logging.properties with:

handlers=java.util.logging.ConsoleHandler
java.util.logging.ConsoleHandler.level=SEVERE

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

I'm getting INFO level messages in output. What i'm doing wrong? I also haven't found any information about JDK configuration, just example as above.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I'm not sure why you have .level=SEVERE appended on the last line, it should just like this:-

handlers=java.util.logging.ConsoleHandler
java.util.logging.ConsoleHandler.level=SEVERE
java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
link|improve this answer
I have corrected this, but it is still not working. – Damian Feb 10 '11 at 21:09
feedback

How are you calling the java?

Are you putting -Djava.util.lgging.config.file=/logging.properties in your java command?

If not, it would ignore your logging.properties and log everything.

.level=ALL on a line of it's own is used as a global level, e.g. : -

handlers=java.util.logging.ConsoleHandler
java.util.logging.ConsoleHandler.level=INFO
java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
.level=SEVERE
mypackage.level=INFO

would only log INFO messages from mypackage and SEVERE from everything else.

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.