Example usage for org.apache.commons.logging LogFactory subclass-usage

List of usage examples for org.apache.commons.logging LogFactory subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.logging LogFactory subclass-usage.

Usage

From source file org.apache.logging.log4j.jcl.LogFactoryImpl.java

/**
 * Log4j binding for Commons Logging.
 * {@inheritDoc}
 */
public class LogFactoryImpl extends LogFactory {

From source file org.codehaus.mojo.unix.maven.logging.MavenCommonLoggingLogFactory.java

public class MavenCommonLoggingLogFactory extends org.apache.commons.logging.LogFactory {
    private static final ThreadLocal<org.apache.maven.plugin.logging.Log> mavenLogger = new ThreadLocal<org.apache.maven.plugin.logging.Log>();

    public Object getAttribute(String s) {
        return null;
    }

From source file org.usrz.libs.logging.CommonsLoggingBridge.java

/**
 * A logging bridge (or in other words a <i>logger factory<i> implementation) for
 * <a href="http://commons.apache.org/proper/commons-logging/">Apache Commons Logging</a>.
 *
 * @author <a href="mailto:pier@usrz.com">Pier Fumagalli</a>
 */

From source file org.fabric3.monitor.log.clogging.CommonsLogFactory.java

/**
 *
 */
public class CommonsLogFactory extends LogFactory {
    private static final Pattern PATTERN = Pattern.compile("\\.");
    private static final String[] ATTRIBUTES = new String[0];

From source file org.acmsl.queryj.tools.logging.QueryJLogFactory.java

/**
 * <code>LogFactory</code> implementation that uses a
 * cached Ant-based <code>Log</code> instance if pre-cached.
 * @author <a href="mailto:chous@acm-sl.org">Jose San Leandro Armendariz</a>
 */
@ThreadSafe

From source file org.acmsl.commons.logging.UniqueLogFactory.java

/**
 * {@link LogFactory} implementation that uses a
 * cached {@link Log} instance.
 * @author <a href="mailto:chous@acm-sl.org">Jose San Leandro Armendariz</a>
 */
@ThreadSafe