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.apache.pdfbox.debugger.ui.DebugLog.java

/**
 * Custom Log implementation which forwards to LogDialog.
 *
 * @author John Hewson
 */
public class DebugLog implements Log {

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

public class LogPerProcessingUnit extends PrefixLog implements Log {

    public LogPerProcessingUnit(Log logger, ProcessingUnit pu) {
        super("[" + pu.getName() + "] ", logger);
    }
}

From source file org.milyn.ejc.EJCLog.java

public class EJCLog implements Log {

    private EJCLogFactory.Level level;

    public EJCLog(Level level) {
        this.level = level;

From source file org.dhatim.ejc.EJCLog.java

public class EJCLog implements Log {

    private EJCLogFactory.Level level;

    public EJCLog(Level level) {
        this.level = level;

From source file helma.util.FileLogger.java

/**
 * An extended Logger that writes to a file and rotates files each midnight.
 *
 * @author Stefan Pollach
 * @author Daniel Ruthardt
 * @author Hannes Wallnoefer

From source file com.agiletec.aps.util.ForJLogger.java

/**
 * SEVERE (highest value)   ERROR, FATAL
 * WARNING               WARN
 * INFO                  INFO
 * CONFIG               
 * FINE

From source file org.wso2.carbon.launcher.test.logging.handlers.CommonsLogHandler.java

/**
 * CommonsLogHandler class which implements the Log interface.
 *
 * @see Log
 * @since 5.0.0
 */

From source file org.eclipse.gemini.blueprint.util.SimpleLogger.java

/**
 * Simple Logger implementation used as fall back to degrade gracefully in case
 * the LogFactory implementation is not configured properly.
 * 
 * @author Costin Leau
 * 

From source file org.wso2.carbon.launcher.test.LoggingHandlers.CommonsLogHandler.java

public class CommonsLogHandler implements Log {
    ArrayList<Object> logList = new ArrayList<Object>();

    public ArrayList<Object> getLogList() {
        return logList;
    }

From source file org.apache.camel.builder.CustomLog.java

class CustomLog implements Log {

    boolean loggedTrace;
    boolean loggedFatal;

    public boolean isDebugEnabled() {