vote up 9 vote down star
1

I have an existing application which does all of it's logging against log4j. We use a number of other libraries that either also use log4j, or log against Commons Logging, which ends up using log4j under the covers in our environment. One of our dependencies even logs against slf4j, which also works fine since it eventually delegates to log4j as well.

Now, I'd like to add ehcache to this application for some caching needs. Previous versions of ehcache used commons-logging, which would have worked perfectly in this scenario, but as of version 1.6-beta1 they have removed the dependency on commons-logging and replaced it with java.util.logging instead.

Not really being familiar with the built-in JDK logging available with java.util.logging, is there an easy way to have any log messages sent to JUL logged against log4j, so I can use my existing configuration and set up for any logging coming from ehcache?

Looking at the javadocs for JUL, it looks like I could set up a bunch of environment variables to change which LogManager implementation is used, and perhaps use that to wrap log4j Loggers in the JUL Logger class. Is this the correct approach?

Kind of ironic that a library's use of built-in JDK logging would cause such a headache when (most of) the rest of the world is using 3rd party libraries instead.

flag

5 Answers

vote up 9 vote down check

One approach I have used successfully is to use slf4j as my primary logging API. I then have slf4j bind to log4j. 3rd party dependencies using other frameworks (like JUL) can be bridged to slf4j.

link|flag
Good link, but I think you meant #jul-to-slf4j – araqnid May 15 at 17:49
Good catch. I've updated the answer accordingly. Thanks! – overthink May 15 at 17:54
This sounds like a good approach, except I can't seem to get it to work :( – matt b May 15 at 18:27
1  
Finally got this to work - was causing some big headaches until I finally discovered/realized that Tomcat supplies it's own JUL implementation and logging, and that I would need to add some sort of root logging level to it's logging properties in order for the bridge to even work. Jesus Christ JUL sucks! – matt b May 15 at 19:31
Also, I can't believe that a library as popular as ehcache would make a switch to something like java.util.logging - seems very boneheaded – matt b May 15 at 19:34
show 1 more comment
vote up 4 vote down

We use SLF4J on our current project and it's worked very well for us. SLF4J is written by Ceki Gülcü, the creator of Log4J, and he's done a really great job. In our code we use the SLF4J logging APIs directly, and we configure SLF4J so that calls from the Jakarta Commons Logging (JCL), java.util.logging (JUL), and Log4J APIs are all bridged to the SLF4J APIs. We need to do that because like you we use third party (open source) libraries that have chosen different logging APIs.

On the bottom of SLF4J, you configure it to use a particular logger implementation. It comes with an internal, or "simple" logger, and you can override this with Log4J, JUL, or Logback. Configuration is all done simply by dropping in different jar files in your classpath.

Originally, we used the Logback implementation, also written by Ceki Gülcü. This is very powerful. However, we then decided to deploy our application to the Glassfish Java EE application server, whose log viewer expects JUL-formatted messages. So just today I switched from Logback to JUL, and in just a few minutes I replaced two Logback jars with an SLF4J jar that connects it to the JUL implementation.

So like overthink, I would heartily recommend using SLF4J in your setup.

link|flag
vote up 0 vote down

And just for reference, here is a class that redirects jul to common logging.

link|flag
vote up 2 vote down

The slf4j site I believe has a bridge for passing java.util.logging events via slf4j (and hence to log4j).

Yes, the SLF4J download contains jul-to-slf4j which I believe does just that. It contains a JUL handler to pass records to SLF4J.

link|flag
vote up 1 vote down

Here is someone who already did it. Never tried it, though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.