Example usage for org.apache.commons.logging Log interface-usage

List of usage examples for org.apache.commons.logging Log interface-usage

Introduction

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

Usage

From source file org.talframework.tal.aspects.support.SimpleLogger.java

/**
 * This logger is used in the tests to hold the log output.
 * It can then be queries after the test.
 *
 * @author Tom Spencer
 */

From source file org.apache.jsieve.mailet.CommonsLoggingAdapter.java

/**
 * Adapts commons logging to mailet logging.
 */
class CommonsLoggingAdapter implements Log {

    public static final int TRACE = 6;

From source file org.nanocontainer.avalon.CommonsLogger.java

/**
 * An implementation of {@link Logger} which delegates to a {@link Log Commons-Log}.
 * 
 * @author <a href="lsimons at jicarilla dot org">Leo Simons</a>
 * @version $Revision$
 */

From source file org.nanocontainer.ioc.avalon.CommonsLogger.java

/**
 * An implementation of {@link Logger} which delegates to a {@link Log Commons-Log}.
 * 
 * @author <a href="lsimons at jicarilla dot org">Leo Simons</a>
 * @version $Revision$
 */

From source file net.anidb.logging.AbstractLog.java

/**
 * <p>The superclass of all logger classes.</p>
 * <p>The subclass defines were the messages are send to. The following system
 * properties are supported to configure the behavior of the subclasses of this
 * logger:
 * <ul>

From source file hadoopInstaller.logging.CompositeLog.java

public class CompositeLog implements Log {
    private List<Log> logs;

    public CompositeLog() {
        this.logs = new ArrayList<>();
    }

From source file org.nabucco.alfresco.enhScriptEnv.common.util.ScriptLoggerLog.java

/**
 * {@link Log} implementation wrapping a Rhino-based script logger without being tied to either {@code ScriptLogger} or {@code LogFunction}
 *
 * @author Axel Faust, <a href="http://www.prodyna.com">PRODYNA AG</a>
 */
public class ScriptLoggerLog implements Log {

From source file org.smallmind.scribe.apache.CommonsLogWrapper.java

public class CommonsLogWrapper implements Log {

    private String name;

    static {

From source file es.uma.crudframework.trazas.Log4JLogger.java

/**
 * Implementation of {@link Log} that maps directly to a <strong>Logger</strong>
 * for log4J version 1.2.
 * <p>
 * Initial configuration of the corresponding Logger instances should be done in
 * the usual manner, as outlined in the Log4J documentation.

From source file com.runwaysdk.logging.RunwayLog.java

public class RunwayLog implements Log {
    static {
        // set up the default configuration if nothing is already set
        if (!isConfigured()) {
            setDefaultConfiguration();
        }