I'm trying to use slf4j + java.util.logging. I know how to set up the Java source code to do this via logger = LoggerFactory.getLogger(...) and logger.warn('...') or whatever.

But where's the documentation for setting up the configuration in slf4j? I'm very confused... I have the log4j manual and am familiar w/ the very basics of logging adapters, but I'm just not sure how to get this to work with slf4j + java.util.logging.

namely:

  • which .properties file and/or JVM -D command-line argument do I need to specify to point it at my configuration file?

  • where's the documentation for the configuration file for java.util.logging?

  • does using slf4j cause any change in my configuration file? (i.e. something that I would have to declare differently, vs. just using java.util.logging or log4j directly)

link|improve this question

71% accept rate
Did you not find those in the SL4J documentation website? slf4j.org/docs.html – edalorzo Apr 15 '11 at 19:13
no, it's very brief. – Jason S Apr 15 '11 at 19:13
I don't get what you want to achieve, do you want to use slf4j's logger in the code and java.logging for output the logging or the other way? – Moritz Heuser Apr 15 '11 at 19:18
slf4j's API, java.util.logging for the underlying implementation, that works fine so far, but I don't know how to configure java.util.logging via either the slf4j API or a .properties file or a JVM -D parameter. – Jason S Apr 15 '11 at 19:21
...where I would rather use .properties files and not configure it programmatically. – Jason S Apr 15 '11 at 19:21
feedback

4 Answers

up vote 1 down vote accepted

See this tutorial on jul:

java -Djava.util.logging.config.file=myLoggingConfigFilePath

But I would recommend to go for Logback

link|improve this answer
1  
There is one distinct advantage of using j.u.l, namely that it is easy to use across classloaders. We use it to propagate log messages out of a web application (WAR) into the servlet containers logs. – Thorbjørn Ravn Andersen Apr 15 '11 at 20:06
feedback

There is no configuration in the slf4j layer. It is just an API, which the backend must provide the implementation for (more or less).

To use java.util.logging as the slf4j backend, you must have slf4j-jdk14-mumle.jar from the slf4j distribution on your classpath, and do the magic listed in the javadoc to enable it. If not you will have a runtime error saying there is no slf4j implementation active.

(the slf4j site is down right now so I cannot check the manual page or the FAQ)

link|improve this answer
"the slf4j site is down right now so I cannot check the manual page or the FAQ)" -- exactly. I have slf4j-api-.jar and slf4j-jdk14-.jar in my classpath, I just don't know how to "do the magic listed in the javadoc" to get it to redirect to a file instead of stdout. – Jason S Apr 15 '11 at 19:19
1  
If you get log messages to your console, it means that the logging system works correctly. You then need to configure it COMPLETELY AS YOU WOULD OTHERWISE to have anything work differently. I.e. for jdk logging you need to do exactly the same work with properties and for log4j you need to provide a log4j.xml file telling it what to do. – Thorbjørn Ravn Andersen Apr 15 '11 at 19:21
OK, then I guess my question becomes where's the docs on jdk14 logging configuration. – Jason S Apr 15 '11 at 19:24
feedback

I've dropped Java logging on the same purpose and went for logback. There is nothing to do to configure logback with SLF4J actually. Just put logback.xml to the root of the jar with logback configuration and put logback-XX.jar on classpath.

<configuration>

  <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
    <!-- encoders are assigned the type
         ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
    <encoder>
      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
    </encoder>
  </appender>

  <root level="warn">
    <appender-ref ref="STDOUT" />
  </root>
</configuration>

This is a config for logging to console, but logback manual has more examples.

link|improve this answer
feedback

You don't configure SLF4J - you need to bind and configure the provider. I use Logback, which was built specifically for SLF4J. You could also use log4j. See the relevant entry in the manual: http://www.slf4j.org/manual.html#binding

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.