From 3d4f45b6a2ad352054206d16820ddf28a5917ffb Mon Sep 17 00:00:00 2001
From: markt
Complete documentation of how to configure Commons-Logging can be found
-in the Commons Logging package documentation. However, as a simple example,
-let's assume that you want to use the SimpleLog implementation
-that is included in Commons-Logging, and set up Digester to log events from
-the Digester logger at the DEBUG level, while you want to log
-events from the Digester.log logger at the INFO level. You can
-accomplish this by creating a commons-logging.properties file
-in your classpath (or setting corresponding system properties on the command
-line that starts your application) with the following contents:
- org.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog - org.apache.commons.logging.simplelog.log.org.apache.commons.digester.Digester=debug - org.apache.commons.logging.simplelog.log.org.apache.commons.digester.Digester.sax=info --