Difference between Simple Logging Facade for Java and Apache Commons Logging

Azder picture Azder · May 16, 2009 · Viewed 7.5k times · Source

What is the difference between Simple Logging Facade for Java and Apache Commons Logging?

Answer

toolkit picture toolkit · May 16, 2009

From the SLF4J FAQ:

SLF4J is conceptually very similar to JCL. As such, it can be thought of as yet another logging facade. However, SLF4J is much simpler in design and arguably more robust. In a nutshell, SLF4J avoid the class loader issues that plague JCL.

Do a google for "JCL classloader issues" for more on this...