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.openhealthtools.openxds.log.LogImpl.java

/**
 * Class allowing to connect the logger to the database, to create message, to
 * delete it and to read it
 * 
 * @author <a href="mailto:venkata.pragallapati@misys.com">Venkat</a>
 * 

From source file org.apache.beehive.netui.util.logging.internal.Log4JLogger.java

/**
 * <p>
 * Logging abstraction used to pipe log messages to Log4J.  This class is used for
 * NetUI backwards compatability so that previous {@link org.apache.beehive.netui.util.logging.Logger}
 * clients continue to log through the usual Log4J channels.
 * </p>

From source file com.j2biz.pencil.SpecialLogger.java

/**
 * @author andrej
 *
 * To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */

From source file org.openhealthtools.openexchange.syslog.LogImpl.java

/**
 * Class allowing to connect the logger to the database, to create message, to
 * delete it and to read it
 * 
 * @author <a href="mailto:venkata.pragallapati@misys.com">Venkat</a>
 * 

From source file autohit.common.traps.CommonsLoggerTrap.java

/**
 * Traps Commons logging.  You must call the static method
 * setTrap() at least once per JVM to get this working.
 * 
 * @author Erich P. Gatejen
 * @version 1.0

From source file org.apache.cayenne.modeler.util.ModelerLogger.java

/**
 * ModelerLogger is a Log implementation, which performs output
 * to the LogConsole. Default behavior is saved since they are delegated
 * to default Log instance. 
 */
public class ModelerLogger implements Log {

From source file org.apache.beehive.netui.util.logging.Logger.java

/**
 * <p>
 * Logging abstraction for NetUI.  This class leverages Jakarta commons-logging to create
 * loggers for NetUI messages.  Application developers can provide their own logger
 * implementations by following the instructions for creating new Log / LogFactory instances
 * in commons-logging.

From source file com.l2jfree.mmocore.network.MMOLogger.java

/**
 * @author NB4L1
 */
public final class MMOLogger implements Log {
    private static final class MMOLogEntry {
        private final Level _level;

From source file org.grlea.log.adapters.commons.CommonsLoggingAdapter.java

/**
 * <p>
 * An adapter for using <a href="https:/simple-log.dev.java.net/">Simple Log</a> within the
 * Jakarta <a href="http://jakarta.apache.org/commons/logging/">Commons Logging</a> package.
 * </p>
 *

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

/**
 * A log that silently discards some log entries if they have been printed
 * in the past minute already.
 * 
 * This class is not thread safe and is intended for single threaded polling code
 * that keeps printing the same log entries over and over again, and that is not performance critical.