You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2008/03/05 22:03:53 UTC

svn commit: r634030 - /myfaces/tobago/trunk/core/src/test/resources/log4j.xml

Author: lofwyr
Date: Wed Mar  5 13:03:43 2008
New Revision: 634030

URL: http://svn.apache.org/viewvc?rev=634030&view=rev
Log:
log config for unit tests

Added:
    myfaces/tobago/trunk/core/src/test/resources/log4j.xml

Added: myfaces/tobago/trunk/core/src/test/resources/log4j.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/test/resources/log4j.xml?rev=634030&view=auto
==============================================================================
--- myfaces/tobago/trunk/core/src/test/resources/log4j.xml (added)
+++ myfaces/tobago/trunk/core/src/test/resources/log4j.xml Wed Mar  5 13:03:43 2008
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+-->
+
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
+
+  <appender name="console" class="org.apache.log4j.ConsoleAppender">
+    <layout class="org.apache.log4j.PatternLayout">
+      <param name="ConversionPattern"
+          value="%d{HH:mm:ss} %15t %-5p - %c:%L - %m%n"/>
+    </layout>
+  </appender>
+
+  <category name="org.apache.myfaces.tobago">
+    <priority value="debug" />
+  </category>
+
+  <root>
+    <priority value="info" />
+    <appender-ref ref="console" />
+  </root>
+
+</log4j:configuration>