Apache Commons Logging

From Wikipedia, the free encyclopedia
Apache Commons Logging
Developer(s)Apache Software Foundation
Stable release
1.3.0 / December 2023; 3 months ago (2023-12)
Repositorygithub.com/apache/commons-logging
Written inJava
Operating systemCross-platform
TypeLogging Tool
LicenseApache License 2.0
Websitecommons.apache.org/proper/commons-logging/

Apache Commons Logging (previously known as Jakarta Commons Logging or JCL) is a Java-based logging utility and a programming model for logging and for other toolkits. It provides APIs, log implementations, and wrapper implementations over some other tools.[1][2][3]

Log level[edit]

The following table defines the log levels and messages in Apache Commons Logging, in decreasing order of severity. The left column lists the log level designation in and the right column provides a brief description of each log level.

Level Description
fatal Severe errors that cause premature termination. Expect these to be immediately visible on a status console.
error Other runtime errors or unexpected conditions. Expect these to be immediately visible on a status console.
warn Use of deprecated APIs, poor use of API, 'almost' errors, other runtime situations that are undesirable or unexpected, but not necessarily "wrong". Expect these to be immediately visible on a status console.
info Interesting runtime events (startup/shutdown). Expect these to be immediately visible on a console, so be conservative and keep to a minimum.
debug Detailed information on the flow through the system. Expect these to be written to logs only.
trace Most detailed information. Expect these to be written to logs only.

[3][4]

Configuration[edit]

Two basic abstractions, Log and LogFactory, are used in Apache Commons Logging.[3]

Example[edit]

Sample code may look like as follows:

package com.cascadetg.ch09;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.logging.impl.Jdk14Logger;

public class LogGenerator
{
  // Note that you pass in an instance of this class to the
  // log generator. This allows you to find the messages
  // generated by this class.
  private static Log log = LogFactory.getLog(LogGenerator.class);

  public static void configJDKLogger()
  {
    try
    {
      ((Jdk14Logger)log).getLogger().setLevel(
java.util.logging.Level.ALL);
      ((Jdk14Logger)log).getLogger().addHandler(
(java.util.logging.FileHandler)Class
        .forName("java.util.logging.FileHandler")
        .newInstance());

      System.out.println("Added JDK 1.4 file handler");
    } catch (Exception e)
    {
      System.out.println("Unable to load JDK 1.4 logging.");
      e.printStackTrace();
    }
  }

  public static void main(String[] args)
  {
    configJDKLogger();
    System.setErr(System.out);

    System.out.println();
    System.out.println("Test fatal log");

    try
    {
      String foo = null;
      int x = 0 / (new Integer(foo)).intValue();
    } catch (Exception e)
    {
      log.fatal(e.getMessage(), e);
    }

    System.out.println();
    System.out.println("Test error log");

    try
    {
      Object foo = null;
      foo.toString();
    } catch (Exception e)
    {
      log.error(e.getMessage(), e);
    }

    System.out.println();
    System.out.println("Test warn log");
    try
    {
      Class.forName("com.cascadetg.NonexistantClass");
    } catch (Exception e)
    {
      log.warn("Can't find a non-existent class!");
    }

    System.out.println();
    System.out.println("Test info log");

    log.info("Starting app!");
    log.info("Quitting app!");

    System.out.println();
    System.out.println("Test debug log");

    if (1 > 2)
    {
      log.debug("1 > 2 evaluated true");
      if (10 % 2 == 0)
        log.debug("10 % 2 is 0");
      else
        log.debug("10 % 2 is not 0");
    } else
    {
      log.debug("1 > 2 evaluated false");
    }

    System.out.println();
    System.out.println("Test trace log");

    log.trace("Calling trace method.");
    log.trace("Calling trace method.");
    log.trace("Calling trace method.");
    log.trace("Calling trace method.");
    log.trace("Calling trace method.");

    System.out.println();
    System.out.println("Log test complete.");
  }
}

[4]

See also[edit]

References[edit]

  1. ^ "commons logging". Apache.org. Apache. Retrieved 12 February 2016.
  2. ^ Zavala, D.A.; Lau, Y.C. (2004). Integrating Jakarta Commons Logging with IBM WebSphere Application Server V5. IBM corporation. p. 2.
  3. ^ a b c "contents". Apache.org. Apache. Retrieved 12 February 2016.
  4. ^ a b Iverson, W. (2005). Apache Jakarta Commons - Reusable Java Components. Crawfordsville, Indiana, USA: Pearson Education, Inc. pp. 120–122.

External links[edit]