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
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);
}
}
* 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.
* 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");
/**