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.smartfrog.services.logging.jcl.front.CommonsLogFrontEnd.java

/**
 * This is a bridge between commons logging and smartfrog logging. Every commons-log operation
 * is relayed to the smartfrog back end.
 *
 */

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

public class CommonsLogAdapter implements org.apache.commons.logging.Log {
    private final Log log;

    public CommonsLogAdapter(Log log) {
        this.log = log;
    }

From source file org.apache.hadoop.util.FlushableLogger.java

/**
 * FlushableLogger can be used for logging messages that should be visible in
 * the system logs immediately. It exposes Log interface, however the calls are
 * much more expensive than simply calling a raw Log. This logger should only be
 * used in non-critical paths!
 * 

From source file net.sourceforge.stripes.util.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 org.apache.openejb.log.commonslogging.Log4J4AppOpenEJB4ContainerLog.java

public class Log4J4AppOpenEJB4ContainerLog implements Log, Serializable {
    private static final Class<?>[] NO_PARAM = new Class<?>[0];
    private static final Class<?>[] OBJECT_PARAM = new Class<?>[] { Object.class };
    private static final Class<?>[] OBJECT_THROWABLE_PARAM = new Class<?>[] { Object.class, Throwable.class };
    private static final Object[] NO_ARGS = new Object[0];

From source file jp.gr.java_conf.kazsharp.lambda_logging.jcl.LambdaLog4jLog.java

/**
 * ??????????Log4j2commons-loggin?Log
 */
public class LambdaLog4jLog extends Log4jLog implements Log, Serializable {

    private static final long serialVersionUID = 1L;

From source file org.seasar.cadhelin.velocity.LogSystemCommonsLog.java

/**
 * Redirects commons-logging messages to Velocity's LogSystem.
 *
 * <p>To use, specify this class in your commons-logging.properties:
 * <code>
 * org.apache.commons.logging.Log=org.apache.velocity.tools.log.LogSystemCommonsLog

From source file org.apache.velocity.tools.generic.log.LogSystemCommonsLog.java

/**
 * Redirects commons-logging messages to Velocity's LogSystem.
 *
 * <p>To use, specify this class in your commons-logging.properties:
 * <code>
 * org.apache.commons.logging.Log=org.apache.velocity.tools.log.LogSystemCommonsLog

From source file org.apache.hupa.server.mock.MockLog.java

public class MockLog implements Log {

    public void debug(Object arg0) {
        // TODO Auto-generated method stub

    }

From source file org.apache.fop.util.CommandLineLogger.java

/**
 * This is a commons-logging logger for command line use.
 */
public class CommandLineLogger implements Log {
    /** "Trace" level logging. */
    public static final int LOG_LEVEL_TRACE = 1;