Class SimpleLog

java.lang.Object
org.apache.commons.logging.impl.SimpleLog
All Implemented Interfaces:
Serializable, Log

public class SimpleLog extends Object implements Log, Serializable

Simple implementation of Log that sends all enabled log messages, for all defined loggers, to System.err. The following system properties are supported to configure the behavior of this logger:

  • org.apache.commons.logging.simplelog.defaultlog - Default logging detail level for all instances of SimpleLog. Must be one of ("trace", "debug", "info", "warn", "error", or "fatal"). If not specified, defaults to "info".
  • org.apache.commons.logging.simplelog.log.xxxxx - Logging detail level for a SimpleLog instance named "xxxxx". Must be one of ("trace", "debug", "info", "warn", "error", or "fatal"). If not specified, the default logging detail level is used.
  • org.apache.commons.logging.simplelog.showlogname - Set to true if you want the Log instance name to be included in output messages. Defaults to false.
  • org.apache.commons.logging.simplelog.showShortLogname - Set to true if you want the last component of the name to be included in output messages. Defaults to true.
  • org.apache.commons.logging.simplelog.showdatetime - Set to true if you want the current date and time to be included in output messages. Default is false.
  • org.apache.commons.logging.simplelog.dateTimeFormat - The date and time format to be used in the output messages. The pattern describing the date and time format is the same that is used in java.text.SimpleDateFormat. If the format is not specified or is invalid, the default format is used. The default format is yyyy/MM/dd HH:mm:ss:SSS zzz.

In addition to looking for system properties with the names specified above, this implementation also checks for a class loader resource named "simplelog.properties", and includes any matching definitions from this resource (if it exists).

Version:
$Id: SimpleLog.java,v 1.21 2004/06/06 20:47:56 rdonkin Exp $
Author:
Scott Sanders, Rod Waldhoff, Robert Burrell Donkin
See Also:
  • Field Details

  • Constructor Details

    • SimpleLog

      public SimpleLog(String name)
      Construct a simple log with given name.
      Parameters:
      name - log name
  • Method Details

    • setLevel

      public void setLevel(int currentLogLevel)

      Set logging level.

      Parameters:
      currentLogLevel - new logging level
    • getLevel

      public int getLevel()

      Get logging level.

    • log

      protected void log(int type, Object message, Throwable t)

      Do the actual logging. This method assembles the message and then calls write() to cause it to be written.

      Parameters:
      type - One of the LOG_LEVEL_XXX constants defining the log level
      message - The message itself (typically a String)
      t - The exception whose stack trace should be logged
    • write

      protected void write(StringBuffer buffer)

      Write the content of the message accumulated in the specified StringBuffer to the appropriate output destination. The default implementation writes to System.err.

      Parameters:
      buffer - A StringBuffer containing the accumulated text to be logged
    • isLevelEnabled

      protected boolean isLevelEnabled(int logLevel)
      Is the given log level currently enabled?
      Parameters:
      logLevel - is this level enabled?
    • debug

      public final void debug(Object message)

      Log a message with debug log level.

      Specified by:
      debug in interface Log
      Parameters:
      message - log this message
    • debug

      public final void debug(Object message, Throwable t)

      Log an error with debug log level.

      Specified by:
      debug in interface Log
      Parameters:
      message - log this message
      t - log this cause
    • trace

      public final void trace(Object message)

      Log a message with trace log level.

      Specified by:
      trace in interface Log
      Parameters:
      message - log this message
    • trace

      public final void trace(Object message, Throwable t)

      Log an error with trace log level.

      Specified by:
      trace in interface Log
      Parameters:
      message - log this message
      t - log this cause
    • info

      public final void info(Object message)

      Log a message with info log level.

      Specified by:
      info in interface Log
      Parameters:
      message - log this message
    • info

      public final void info(Object message, Throwable t)

      Log an error with info log level.

      Specified by:
      info in interface Log
      Parameters:
      message - log this message
      t - log this cause
    • warn

      public final void warn(Object message)

      Log a message with warn log level.

      Specified by:
      warn in interface Log
      Parameters:
      message - log this message
    • warn

      public final void warn(Object message, Throwable t)

      Log an error with warn log level.

      Specified by:
      warn in interface Log
      Parameters:
      message - log this message
      t - log this cause
    • error

      public final void error(Object message)

      Log a message with error log level.

      Specified by:
      error in interface Log
      Parameters:
      message - log this message
    • error

      public final void error(Object message, Throwable t)

      Log an error with error log level.

      Specified by:
      error in interface Log
      Parameters:
      message - log this message
      t - log this cause
    • fatal

      public final void fatal(Object message)

      Log a message with fatal log level.

      Specified by:
      fatal in interface Log
      Parameters:
      message - log this message
    • fatal

      public final void fatal(Object message, Throwable t)

      Log an error with fatal log level.

      Specified by:
      fatal in interface Log
      Parameters:
      message - log this message
      t - log this cause
    • isDebugEnabled

      public final boolean isDebugEnabled()

      Are debug messages currently enabled?

      This allows expensive operations such as String concatenation to be avoided when the message will be ignored by the logger.

      Specified by:
      isDebugEnabled in interface Log
    • isErrorEnabled

      public final boolean isErrorEnabled()

      Are error messages currently enabled?

      This allows expensive operations such as String concatenation to be avoided when the message will be ignored by the logger.

      Specified by:
      isErrorEnabled in interface Log
    • isFatalEnabled

      public final boolean isFatalEnabled()

      Are fatal messages currently enabled?

      This allows expensive operations such as String concatenation to be avoided when the message will be ignored by the logger.

      Specified by:
      isFatalEnabled in interface Log
    • isInfoEnabled

      public final boolean isInfoEnabled()

      Are info messages currently enabled?

      This allows expensive operations such as String concatenation to be avoided when the message will be ignored by the logger.

      Specified by:
      isInfoEnabled in interface Log
      Returns:
      true if info enabled, false otherwise
    • isTraceEnabled

      public final boolean isTraceEnabled()

      Are trace messages currently enabled?

      This allows expensive operations such as String concatenation to be avoided when the message will be ignored by the logger.

      Specified by:
      isTraceEnabled in interface Log
      Returns:
      true if trace enabled, false otherwise
    • isWarnEnabled

      public final boolean isWarnEnabled()

      Are warn messages currently enabled?

      This allows expensive operations such as String concatenation to be avoided when the message will be ignored by the logger.

      Specified by:
      isWarnEnabled in interface Log