bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / tomcat-connectors-1.2.32-src / jkstatus / test / conf / log4j.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Licensed to the Apache Software Foundation (ASF) under one or more
4   contributor license agreements.  See the NOTICE file distributed with
5   this work for additional information regarding copyright ownership.
6   The ASF licenses this file to You under the Apache License, Version 2.0
7   (the "License"); you may not use this file except in compliance with
8   the License.  You may obtain a copy of the License at
9
10       http://www.apache.org/licenses/LICENSE-2.0
11
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17 -->
18 <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
19 <!-- ===================================================================== -->
20 <!-- -->
21 <!-- Log4j Configuration -->
22 <!-- -->
23 <!-- ===================================================================== -->
24 <!-- $Id: log4j.xml 572120 2007-09-02 19:32:11Z markt $ -->
25 <!--
26 | For more configuration infromation and examples see the Jakarta Log4j
27 | owebsite: http://jakarta.apache.org/log4j
28 -->
29 <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
30
31 <!-- ============================== -->
32 <!-- Append messages to the console -->
33 <!-- ==============================-->
34
35 <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
36 <param name="Target" value="System.out"/>
37 <layout class="org.apache.log4j.PatternLayout">
38 <!--The default pattern: Date Priority [Category] Message\n-->
39 <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
40 </layout>
41 </appender>
42
43
44 <category name="org.apache.jk.status" 
45            additivity="false"> 
46    <priority value="info" />
47    <appender-ref ref="CONSOLE" />
48 </category>
49
50 <category name="org.apache.catalina" 
51            additivity="false"> 
52    <priority value="info" />
53    <appender-ref ref="CONSOLE" />
54 </category>
55 <category name="org.apache.tomcat" 
56            additivity="false"> 
57    <priority value="error" />
58    <appender-ref ref="CONSOLE" />
59 </category>
60 <category name="org.apache.naming" 
61            additivity="false"> 
62    <priority value="info" />
63    <appender-ref ref="CONSOLE" />
64 </category>
65 <category name="org.apache.commons" 
66            additivity="false"> 
67    <priority value="info" />
68    <appender-ref ref="CONSOLE" />
69 </category>
70
71 <!-- Setup the Root c  -->
72 <root>
73 <appender-ref ref="CONSOLE"/>
74 </root>
75 </log4j:configuration> 
76