com.opensymphony.xwork2.util.logging.commons
public class: CommonsLoggerFactory [javadoc |
source]
java.lang.Object
com.opensymphony.xwork2.util.logging.LoggerFactory
com.opensymphony.xwork2.util.logging.commons.CommonsLoggerFactory
Creates commons-logging-backed loggers
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from com.opensymphony.xwork2.util.logging.commons.CommonsLoggerFactory Detail: |
protected Logger getLoggerImpl(Class<?> cls) {
return new CommonsLogger(LogFactory.getLog(cls));
}
|
protected Logger getLoggerImpl(String name) {
return new CommonsLogger(LogFactory.getLog(name));
}
|