List of usage examples for org.apache.commons.logging Log interface-usage
From source file org.docx4j.fonts.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;
From source file org.apache.james.transport.mailets.jsieve.CommonsLoggingAdapter.java
/** * Adapts commons logging to mailet logging. */ public class CommonsLoggingAdapter implements Log { public static Builder builder() {
From source file org.lockss.util.CommonsLoggingLogger.java
/**
* Implementation of Jakarta Commons logging interface that logs using
* {@link org.lockss.util.Logger}. This is installed via the file
* src/commons-logging.properties, which is copied to top level in the jar
* by build.xml. <p>Until Logger has been configured for the first time
* (in order to set log levels), the initial log level for these logs is
From source file org.unitime.timetable.util.queue.QueueItem.java
/** * * @author Tomas Muller * */ public abstract class QueueItem implements Log {
From source file phex.utils.PhexLogger.java
/** * */ public class PhexLogger implements Log { public static final LogLevel DEBUG = new LogLevel((short) 0);
From source file org.acmsl.queryj.tools.logging.QueryJLog.java
/**
* Minimal logging helper to unify at API level
* all possible logging mechanisms used when executing
* QueryJ. It extends Apache Commons-Logging's Log just
* to make the developer confortable with the API, since
* using it just means replacing
From source file phex.common.log.PhexLogger.java
/** * */ public class PhexLogger implements Log { public static final LogLevel DEBUG = new LogLevel((short) 0);
From source file org.usrz.libs.logging.CommonsLoggingAdapter.java
/**
* A logging adapter (or in other words a <i>logger<i> implementation) for
* <a href="http://commons.apache.org/proper/commons-logging/">Apache Commons Logging</a>.
*
* @author <a href="mailto:pier@usrz.com">Pier Fumagalli</a>
*/
From source file com.ayovel.nian.exception.XLog.java
/** * The <code>XLog</code> class extends the functionality of the Apache common-logging <code>Log</code> interface. <p/> * It provides common prefix support, message templating with variable parameters and selective tee logging to multiple * logs. <p/> It provides also the LogFactory functionality. */ public class XLog implements Log {
From source file org.fabric3.monitor.log.clogging.MonitorLog.java
/** * Bridges from Commons Logging to the Fabric3 monitor subsystem. */ public class MonitorLog implements Log { private int level; private MonitorProxy proxy;