Followup to r1164567, because not all occurences have been replaced.
authorkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 9 Sep 2011 23:25:03 +0000 (23:25 +0000)
committerkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 9 Sep 2011 23:25:03 +0000 (23:25 +0000)
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=51758
Align the digester logger names with the class name else users will never be able to figure out how to stop it logging

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1167394 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/tomcat/util/digester/Digester.java
java/org/apache/tomcat/util/digester/GenericParser.java
java/org/apache/tomcat/util/digester/XercesParser.java

index f43cc95..6576e3d 100644 (file)
@@ -102,7 +102,7 @@ public class Digester extends DefaultHandler {
                     initialized = true;
                 } catch (Throwable t) {
                     ExceptionUtils.handleThrowable(t);
-                    LogFactory.getLog("org.apache.commons.digester.Digester").
+                    LogFactory.getLog("org.apache.tomcat.util.digester.Digester").
                         error("Unable to load property source["+className+"].",t);
                 }
             }
index f75e671..02e41a4 100644 (file)
@@ -41,7 +41,7 @@ public class GenericParser{
      * The Log to which all SAX event related logging calls will be made.
      */
     private static final Log log =
-        LogFactory.getLog("org.apache.commons.digester.Digester.sax");
+        LogFactory.getLog("org.apache.tomcat.util.digester.Digester.sax");
 
     /**
      * The JAXP 1.2 property required to set up the schema location.
index 5abdd74..b337539 100644 (file)
@@ -46,7 +46,7 @@ public class XercesParser{
      * The Log to which all SAX event related logging calls will be made.
      */
     private static final Log log =
-        LogFactory.getLog("org.apache.commons.digester.Digester.sax");
+        LogFactory.getLog("org.apache.tomcat.util.digester.Digester.sax");
 
 
     /**