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.echocat.jomon.runtime.logging.Cl2Slf4jLoggerFactory.java

public class Cl2Slf4jLoggerFactory extends LogFactory {

    public static final String LOG_PROPERTY = "org.apache.commons.logging.Log";

    @Nonnull
    private final ILoggerFactory _loggerFactory;

From source file net.ymate.platform.log.jcl.JCLogFactory.java

/**
 * @author  (suninformation@163.com) on 15/9/28 21:59
 * @version 1.0
 */
public class JCLogFactory extends LogFactory {

From source file org.jivesoftware.util.log.util.CommonsLogFactory.java

/**
 * A LogFactory implementation to override the default commons-logging behavior. All log
 * statements are written to the Openfire logs. Info level logging is sent to debug.
 */
public class CommonsLogFactory extends LogFactory {

From source file org.b5chat.crossfire.core.util.log.util.CommonsLogFactory.java

/**
 * A LogFactory implementation to override the default commons-logging behavior. All log
 * statements are written to the crossfire logs. Info level logging is sent to debug.
 */
public class CommonsLogFactory extends LogFactory {

From source file org.apache.ftpserver.FtpLogFactory.java

/**
 * Custom log factory to add other log implementations.
 * 
 * @author <a href="mailto:rana_b@yahoo.com">Rana Bhattacharyya</a>
 */
public class FtpLogFactory extends LogFactory {

From source file com.cohort.util.String2LogFactory.java

/**
 * <p>Concrete subclass of LogFactory specific to String2.
 *
 * officially deprecated. Per discussion on COMMONS-DEV, the behind-the-scenes use
 *  of this class as a proxy factory has been removed.  For 1.0, you
 *  can still request it directly if you wish, but it doesn't really

From source file org.openqa.jetty.log.Factory.java

/**
 * Commons Logging Factory for org.openqa.jetty.log
 * Returns a static default log, unless an alternate Log implementation has been set as
 * an attribute keyed by the classname or other name of the log.  If the name of the attibute ends 
 * with '.*' it is assumed to be a name prefix match.
 * Attributes with string values are treated as references to other attributes.

From source file org.browsermob.proxy.jetty.log.Factory.java

/**
 * Commons Logging Factory for org.mortbay.log
 * Returns a static default log, unless an alternate Log implementation has been set as
 * an attribute keyed by the classname or other name of the log.  If the name of the attibute ends 
 * with '.*' it is assumed to be a name prefix match.
 * Attributes with string values are treated as references to other attributes.

From source file net.lightbody.bmp.proxy.jetty.log.Factory.java

/**
 * Commons Logging Factory for org.mortbay.log
 * Returns a static default log, unless an alternate Log implementation has been set as
 * an attribute keyed by the classname or other name of the log.  If the name of the attibute ends 
 * with '.*' it is assumed to be a name prefix match.
 * Attributes with string values are treated as references to other attributes.

From source file net.openhft.chronicle.logger.jcl.ChronicleLoggerFactory.java

public class ChronicleLoggerFactory extends LogFactory {
    private static final Log NOP_LOGGER = new NoOpLog();

    private final Map<String, ChronicleLogger> loggers;
    private ChronicleLogManager manager;