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