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 com.linuxbox.util.ThreadAwareLogger.java

public class ThreadAwareLogger implements Log {
    private Log actualLog;

    public ThreadAwareLogger(String name) {
        actualLog = new Log4JLogger(name);
    }

From source file org.apache.sqoop.manager.oracle.OraOopLog.java

/**
 * Class to wrap commons logging to support caching entries.
 */
public class OraOopLog implements org.apache.commons.logging.Log, OraOopLogFactory.OraOopLog2 {

    private org.apache.commons.logging.Log log;

From source file helma.util.Logger.java

/**
 * A simple logger that writes to a PrintStream such as System.out.
 */
public class Logger implements Log {

    // buffer for log items; create a synchronized list for log entries since

From source file eionet.cr.harvest.util.HarvestLog.java

/**
 *
 * @author <a href="mailto:jaanus.heinlaid@tietoenator.com">Jaanus Heinlaid</a>
 *
 */
public class HarvestLog implements Log {

From source file org.springframework.http.HttpLog.java

/**
 * Composite {@link Log} configured with a primary logger and a list of secondary
 * ones to fall back on if the main one is not enabled.
 *
 * <p>This class also declares {@link #webLogger} for use as fallback when
 * logging in the "org.springframework.http" package.

From source file org.operamasks.faces.binding.impl.CommonsLoggerWrapper.java

class CommonsLoggerWrapper implements Log {
    private final ModelBean bean;
    private final Log delegate;

    CommonsLoggerWrapper(ModelBean bean, Log delegate) {
        this.bean = bean;

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

/**
 * @author  (suninformation@163.com) on 15/9/28 21:16
 * @version 1.0
 */
public class JCLogger implements Log, Serializable {

From source file org.amplafi.flow.impl.FlowStateLoggerImpl.java

/**
 * Logs the state of the flows. Useful for dumping out the state when there is an error.
 *
 */
public class FlowStateLoggerImpl implements Log {

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

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

From source file org.apache.openejb.log.commonslogging.OpenEJBCommonsLog.java

public class OpenEJBCommonsLog implements Log, Serializable {
    private transient Logger logger;
    private final String category;

    public OpenEJBCommonsLog(final String category) {
        this.category = category;