You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ca...@apache.org on 2006/08/30 22:08:23 UTC

svn commit: r438608 - in /maven/continuum/trunk/continuum-store/src/test/resources: ./ log4j.xml

Author: carlos
Date: Wed Aug 30 13:08:23 2006
New Revision: 438608

URL: http://svn.apache.org/viewvc?rev=438608&view=rev
Log:
Add log4j config for tests

Added:
    maven/continuum/trunk/continuum-store/src/test/resources/
    maven/continuum/trunk/continuum-store/src/test/resources/log4j.xml   (with props)

Added: maven/continuum/trunk/continuum-store/src/test/resources/log4j.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-store/src/test/resources/log4j.xml?rev=438608&view=auto
==============================================================================
--- maven/continuum/trunk/continuum-store/src/test/resources/log4j.xml (added)
+++ maven/continuum/trunk/continuum-store/src/test/resources/log4j.xml Wed Aug 30 13:08:23 2006
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
+
+  <appender name="default" class="org.apache.log4j.ConsoleAppender">
+    <param name="Target" value="System.out"/>
+    <param name="Threshold" value="DEBUG"/>
+
+    <layout class="org.apache.log4j.PatternLayout">
+      <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p %-20c [%C] %m%n"/>
+    </layout>
+  </appender>
+
+  <category name="JPOX">
+    <priority value="ERROR"/>
+    <appender-ref ref="default"/>
+  </category>
+
+  <root>
+    <priority value="INFO"/>
+    <appender-ref ref="default"/>
+  </root>
+
+</log4j:configuration>

Propchange: maven/continuum/trunk/continuum-store/src/test/resources/log4j.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/continuum/trunk/continuum-store/src/test/resources/log4j.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"