View | Details | Raw Unified | Return to bug 51758
Collapse All | Expand All

(-)java/org/apache/tomcat/util/digester/Digester.java (-4 / +4 lines)
Lines 329-342 Link Here
329
     * The Log to which most logging calls will be made.
329
     * The Log to which most logging calls will be made.
330
     */
330
     */
331
    protected Log log =
331
    protected Log log =
332
        LogFactory.getLog("org.apache.commons.digester.Digester");
332
        LogFactory.getLog("org.apache.tomcat.util.digester.Digester");
333
333
334
334
335
    /**
335
    /**
336
     * The Log to which all SAX event related logging calls will be made.
336
     * The Log to which all SAX event related logging calls will be made.
337
     */
337
     */
338
    protected Log saxLog =
338
    protected Log saxLog =
339
        LogFactory.getLog("org.apache.commons.digester.Digester.sax");
339
        LogFactory.getLog("org.apache.tomcat.util.digester.Digester.sax");
340
    
340
    
341
        
341
        
342
    /**
342
    /**
Lines 2635-2642 Link Here
2635
            return;
2635
            return;
2636
        }
2636
        }
2637
2637
2638
        log = LogFactory.getLog("org.apache.commons.digester.Digester");
2638
        log = LogFactory.getLog("org.apache.tomcat.util.digester.Digester");
2639
        saxLog = LogFactory.getLog("org.apache.commons.digester.Digester.sax");
2639
        saxLog = LogFactory.getLog("org.apache.tomcat.util.digester.Digester.sax");
2640
2640
2641
        // Perform lazy configuration as needed
2641
        // Perform lazy configuration as needed
2642
        initialize(); // call hook method for subclasses that want to be initialized once only
2642
        initialize(); // call hook method for subclasses that want to be initialized once only
(-)java/org/apache/tomcat/util/digester/GenericParser.java (-1 / +1 lines)
Lines 42-48 Link Here
42
     * The Log to which all SAX event related logging calls will be made.
42
     * The Log to which all SAX event related logging calls will be made.
43
     */
43
     */
44
    protected static Log log =
44
    protected static Log log =
45
        LogFactory.getLog("org.apache.commons.digester.Digester.sax");
45
        LogFactory.getLog("org.apache.tomcat.util.digester.Digester.sax");
46
46
47
    /**
47
    /**
48
     * The JAXP 1.2 property required to set up the schema location.
48
     * The JAXP 1.2 property required to set up the schema location.
(-)java/org/apache/tomcat/util/digester/XercesParser.java (-1 / +1 lines)
Lines 47-53 Link Here
47
     * The Log to which all SAX event related logging calls will be made.
47
     * The Log to which all SAX event related logging calls will be made.
48
     */
48
     */
49
    protected static Log log =
49
    protected static Log log =
50
        LogFactory.getLog("org.apache.commons.digester.Digester.sax");
50
        LogFactory.getLog("org.apache.tomcat.util.digester.Digester.sax");
51
51
52
52
53
    /**
53
    /**

Return to bug 51758