Author: mculpepper(a)jboss.com
Date: 2007-05-21 19:54:34 -0400 (Mon, 21 May 2007)
New Revision: 2047
Added:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/xml/
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/xml/log4j.xml
Removed:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/xml/
Log:
the "xml" folder has been moved to "src/xml" so we can just return
URLs from
the classloader instead of the OSGi bundle
Copied: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/xml (from rev 2039,
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/xml)
Copied: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/xml/log4j.xml (from rev
2039, trunk/core/plugins/org.jboss.ide.eclipse.archives.core/log4j.xml)
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/xml/log4j.xml
(rev 0)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/xml/log4j.xml 2007-05-21
23:54:34 UTC (rev 2047)
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<!-- ===================================================================== -->
+<!-- -->
+<!-- Log4j Configuration -->
+<!-- -->
+<!-- ===================================================================== -->
+
+<!-- $Id: log4j.xml 1903 2007-04-18 21:07:54Z rawb $ -->
+
+<!--
+ | For more configuration infromation and examples see the Jakarta Log4j
+ | owebsite:
http://jakarta.apache.org/log4j
+ -->
+
+<log4j:configuration
xmlns:log4j="http://jakarta.apache.org/log4j/"
debug="false">
+
+
+ <appender name="CONSOLE"
class="org.apache.log4j.ConsoleAppender">
+ <param name="Target" value="System.out"/>
+ <param name="Threshold" value="TRACE"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] Message\n -->
+ <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p
[%c{1}] %m%n"/>
+ </layout>
+ </appender>
+
+ <category name="org.jboss.xb">
+
+ </category>
+
+
+ <!-- ======================= -->
+ <!-- Setup the Root category -->
+ <!-- ======================= -->
+
+ <root>
+ <appender-ref ref="CONSOLE"/>
+ </root>
+</log4j:configuration>