From 3d4f45b6a2ad352054206d16820ddf28a5917ffb Mon Sep 17 00:00:00 2001 From: markt Date: Thu, 16 Jul 2009 13:06:38 +0000 Subject: [PATCH] Remove commons logging reference - this copy of the digester doesn't use it. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@794663 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/tomcat/util/digester/package.html | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/java/org/apache/tomcat/util/digester/package.html b/java/org/apache/tomcat/util/digester/package.html index 88883c4b0..922a7cb22 100644 --- a/java/org/apache/tomcat/util/digester/package.html +++ b/java/org/apache/tomcat/util/digester/package.html @@ -462,21 +462,6 @@ works before you start using Digester seriously.

volume. -

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
-
-

Usage Examples

-- 2.11.0