DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Commons-logging Logger Instantiation
How to instantiate a logger with commons-logging (though now I'd rather use SLF4j).
Notice that some prefer to have it static, some not, and somebody prefers the name "logger" to "LOG".
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
...
public class MyClass {
private static final Log LOG = LogFactory.getLog(MyClass.class);
...






