From 5a64bf30d61407656b10f1f3fc1cb979810f7e94 Mon Sep 17 00:00:00 2001 From: Robert Burrell Donkin Date: Tue, 14 Feb 2006 21:39:55 +0000 Subject: [PATCH] Copied SimpleLog description to user guide (from Javadocs) and edited. Issue #38643. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@377843 13f79535-47bb-0310-9956-ffa450edef68 --- xdocs/guide.xml | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/xdocs/guide.xml b/xdocs/guide.xml index 13f9d99..7d143b9 100644 --- a/xdocs/guide.xml +++ b/xdocs/guide.xml @@ -73,6 +73,8 @@
  • Creating A LogFactory Implementation
  • +
  • A Quick Guide To Simple Log +
  • Frequently Asked Questions
  • @@ -722,6 +724,66 @@ Review the Javadoc for the LogFactoryImpl.java for details.

    + +
    +

    +JCL is distributed with a very simple Log implementation named +org.apache.commons.logging.impl.SimpleLog. This is intended to be a minimal +implementation and those requiring a fully functional open source logging system are +directed to Log4J. +

    +

    + SimpleLog 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:

    + + +

    +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). +