I'm unable to adjust java logging's logging level. I'm using maven surefire (mvn test), and trying to adjust from the default INFO to e.g. FINEST.

I have logging.properties file under src/test/resources/logging.properties

after compile, i see under target/test-classes, i see a logging.properties file with the intended config:

java.util.logging.ConsoleHandler.level=FINEST

javax.enterprise.system.container.ejb.level=FINE

...

however the console output from glassfish only have INFO / SEVERE level messages.

Where did I go wrong? or is this another pain in the butt thing with maven?

link|improve this question

68% accept rate
I'm a bit confused here. How does glassfish fit into this? I think it's likely you are getting confused between glassfish's logging and the maven unit test logging. What framework is the maven build using for logging? – drekka Oct 15 '10 at 2:35
i'm debugging a unit test that uses the Embedded container in glassfish v3. according to: forums.java.net/jive/thread.jspa?messageID=395759, under reply by 'Marina Vatkina', thats the key to output FINE messages for the EJB container... I guess my question is is my setup correct for java util logging? Or is there extra configuration needed? - not just for this particular instance, but lets say I have a class com.something.Main, and i want to output FINEST messages for it... – Dzhu Oct 15 '10 at 3:30
feedback

3 Answers

up vote 2 down vote accepted

You need to specifiy your handlers in the logging file

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

then it should work

link|improve this answer
awesome, its working now thank you. How did I miss that????? – Dzhu Oct 25 '10 at 0:30
feedback

Looks like its not possible yet under maven?:

http://jira.codehaus.org/browse/MNG-2570

Also when I setup the pom to use a custom java.util.logging properties file as follows:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <version>2.4.2</version>
  <configuration>
    <systemProperties>
      <property>
        <name>java.util.logging.config.file</name>
        <value>${project.build.directory}/test-classes/logging.properties</value>
      </property>
    </systemProperties>
   ...

logging disappears...

link|improve this answer
feedback

try

${build.testOutputDirectory}/logging.properties

Also, I specify this stuff on the command line with surfire-args.

<argLine>${surefire.argLine} ${argLine} -Djava.util.logging.config.file=${build.testOutputDirectory}/logging.properties</argLine>
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.