Interface Log

All Known Implementing Classes:
NoOpLog, SimpleLog

public interface Log
A simple org.apache.commons.logging interface abstracting org.apache.commons.logging APIs. In order to be instantiated successfully by LogFactory, classes that implement this interface must have a constructor that takes a single String parameter representing the "name" of this Log.

The six org.apache.commons.logging levels used by Log are (in order):

  1. trace (the least serious)
  2. debug
  3. info
  4. warn
  5. error
  6. fatal (the most serious)
The mapping of these log levels to the concepts used by the underlying org.apache.commons.logging system is implementation dependent. The implementation should ensure, though, that this ordering behaves as expected.

Performance is often a org.apache.commons.logging concern. By examining the appropriate property, a component can avoid expensive operations (producing information to be logged).

For example,

    if (log.isDebugEnabled()) {
        ... do something expensive ...
        log.debug(theResult);
    }
 

Configuration of the underlying org.apache.commons.logging system will generally be done external to the Logging APIs, through whatever mechanism is supported by that system.

Version:
$Id: Log.java 1606045 2014-06-27 12:11:56Z tn $
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    debug(Object message)
    Logs a message with debug log level.
    void
    debug(Object message, Throwable t)
    Logs an error with debug log level.
    void
    error(Object message)
    Logs a message with error log level.
    void
    error(Object message, Throwable t)
    Logs an error with error log level.
    void
    fatal(Object message)
    Logs a message with fatal log level.
    void
    fatal(Object message, Throwable t)
    Logs an error with fatal log level.
    void
    info(Object message)
    Logs a message with info log level.
    void
    info(Object message, Throwable t)
    Logs an error with info log level.
    boolean
    Is debug org.apache.commons.logging currently enabled?
    boolean
    Is error org.apache.commons.logging currently enabled?
    boolean
    Is fatal org.apache.commons.logging currently enabled?
    boolean
    Is info org.apache.commons.logging currently enabled?
    boolean
    Is trace org.apache.commons.logging currently enabled?
    boolean
    Is warn org.apache.commons.logging currently enabled?
    void
    trace(Object message)
    Logs a message with trace log level.
    void
    trace(Object message, Throwable t)
    Logs an error with trace log level.
    void
    warn(Object message)
    Logs a message with warn log level.
    void
    warn(Object message, Throwable t)
    Logs an error with warn log level.
  • Method Details

    • debug

      void debug(Object message)
      Logs a message with debug log level.
      Parameters:
      message - log this message
    • debug

      void debug(Object message, Throwable t)
      Logs an error with debug log level.
      Parameters:
      message - log this message
      t - log this cause
    • error

      void error(Object message)
      Logs a message with error log level.
      Parameters:
      message - log this message
    • error

      void error(Object message, Throwable t)
      Logs an error with error log level.
      Parameters:
      message - log this message
      t - log this cause
    • fatal

      void fatal(Object message)
      Logs a message with fatal log level.
      Parameters:
      message - log this message
    • fatal

      void fatal(Object message, Throwable t)
      Logs an error with fatal log level.
      Parameters:
      message - log this message
      t - log this cause
    • info

      void info(Object message)
      Logs a message with info log level.
      Parameters:
      message - log this message
    • info

      void info(Object message, Throwable t)
      Logs an error with info log level.
      Parameters:
      message - log this message
      t - log this cause
    • isDebugEnabled

      boolean isDebugEnabled()
      Is debug org.apache.commons.logging currently enabled?

      Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than debug.

      Returns:
      true if debug is enabled in the underlying logger.
    • isErrorEnabled

      boolean isErrorEnabled()
      Is error org.apache.commons.logging currently enabled?

      Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than error.

      Returns:
      true if error is enabled in the underlying logger.
    • isFatalEnabled

      boolean isFatalEnabled()
      Is fatal org.apache.commons.logging currently enabled?

      Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than fatal.

      Returns:
      true if fatal is enabled in the underlying logger.
    • isInfoEnabled

      boolean isInfoEnabled()
      Is info org.apache.commons.logging currently enabled?

      Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than info.

      Returns:
      true if info is enabled in the underlying logger.
    • isTraceEnabled

      boolean isTraceEnabled()
      Is trace org.apache.commons.logging currently enabled?

      Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than trace.

      Returns:
      true if trace is enabled in the underlying logger.
    • isWarnEnabled

      boolean isWarnEnabled()
      Is warn org.apache.commons.logging currently enabled?

      Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than warn.

      Returns:
      true if warn is enabled in the underlying logger.
    • trace

      void trace(Object message)
      Logs a message with trace log level.
      Parameters:
      message - log this message
    • trace

      void trace(Object message, Throwable t)
      Logs an error with trace log level.
      Parameters:
      message - log this message
      t - log this cause
    • warn

      void warn(Object message)
      Logs a message with warn log level.
      Parameters:
      message - log this message
    • warn

      void warn(Object message, Throwable t)
      Logs an error with warn log level.
      Parameters:
      message - log this message
      t - log this cause