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 net.kornr.osgi.jcl.LogOSGI.java

public class LogOSGI implements Log {
    /**
     * The default constructor. At its initial state, the object cannot log, but should silently ignore
     * any logging request. 
     */
    public LogOSGI() {

From source file org.openspaces.grid.gsm.PrefixLog.java

/**
 * @author itaif
 * @since 9.0.1
 */
public class PrefixLog implements Log {

From source file com.seleritycorp.common.base.logging.PrefixedLogger.java

/**
 * Wraps a logger, adding a prefix to each logged message.
 */
public class PrefixedLogger implements Log {
    public interface Factory {
        PrefixedLogger create(String prefix, Log parentLog);

From source file com.idocbox.common.log.IdocboxLog.java

/**
 * idocbox Log
 * @author C.H Li email:wiseneuron@gmail.com
 * @since  0.0.1.1
 * 
 */

From source file org.jasig.resource.aggr.mojo.CommonsLogToMavenLog.java

/**
 * Adapts the commons-logging {@link org.apache.commons.logging.Log} interface to the Maven {@link Log} interface
 * 
 * @author Eric Dalquist
 * @version $Revision$
 */

From source file org.springframework.util.log.CompositeLog.java

/**
 * Implementation of {@link Log} that wraps a list of loggers and delegates to
 * the first one for which logging is enabled at the given level.
 *
 * @author Rossen Stoyanchev
 * @since 5.1

From source file axiom.util.Logger.java

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

    // buffer for log items

From source file org.springframework.core.log.CompositeLog.java

/**
 * Implementation of {@link Log} that wraps a list of loggers and delegates
 * to the first one for which logging is enabled at the given level.
 *
 * @author Rossen Stoyanchev
 * @since 5.1

From source file com.orangeleap.common.security.OrangeLeapLogger.java

public class OrangeLeapLogger implements Log, java.io.Serializable {

    private static final long serialVersionUID = 1L;

    private Log logger;

From source file io.smartspaces.logging.ExtendedLog.java

/**
 * A logger with extended functionality compared to the typical Apache Commons
 * logger.
 *
 * @author Keith M. Hughes
 */