Author: dims
Date: Fri Feb  1 09:14:52 2008
New Revision: 617562

URL: http://svn.apache.org/viewvc?rev=617562&view=rev
Log:
switch on debug traces with log4j. let's see what shakes out.

Added:
    
webservices/sandesha/trunk/java/modules/tests/test-resources/commons-logging.properties
    
webservices/sandesha/trunk/java/modules/tests/test-resources/log4j.properties
Modified:
    webservices/sandesha/trunk/java/modules/tests/pom.xml

Modified: webservices/sandesha/trunk/java/modules/tests/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/tests/pom.xml?rev=617562&r1=617561&r2=617562&view=diff
==============================================================================
--- webservices/sandesha/trunk/java/modules/tests/pom.xml (original)
+++ webservices/sandesha/trunk/java/modules/tests/pom.xml Fri Feb  1 09:14:52 
2008
@@ -112,6 +112,30 @@
             <artifactId>junit</artifactId>
             <version>${junit.version}</version>
         </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>${log4j.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.jms</groupId>
+                    <artifactId>jms</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.sun.jdmk</groupId>
+                    <artifactId>jmxtools</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.sun.jmx</groupId>
+                    <artifactId>jmxri</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>${commons.logging.version}</version>
+        </dependency>
     </dependencies>
 
        <properties>

Added: 
webservices/sandesha/trunk/java/modules/tests/test-resources/commons-logging.properties
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/tests/test-resources/commons-logging.properties?rev=617562&view=auto
==============================================================================
--- 
webservices/sandesha/trunk/java/modules/tests/test-resources/commons-logging.properties
 (added)
+++ 
webservices/sandesha/trunk/java/modules/tests/test-resources/commons-logging.properties
 Fri Feb  1 09:14:52 2008
@@ -0,0 +1,30 @@
+#
+# 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.
+#
+
+# This is the logging properties that goes to the war, there are two logging 
conf kept at the 
+# svn, one for developement (one at src/test-resources) and other for 
producation
+ 
+# Uncomment the next line to disable all logging.
+#org.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog
+
+# Uncomment the next line to enable the simple log based logging
+#org.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog
+
+# Uncomment the next line to enable log4j based logging
+org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger

Added: 
webservices/sandesha/trunk/java/modules/tests/test-resources/log4j.properties
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/tests/test-resources/log4j.properties?rev=617562&view=auto
==============================================================================
--- 
webservices/sandesha/trunk/java/modules/tests/test-resources/log4j.properties 
(added)
+++ 
webservices/sandesha/trunk/java/modules/tests/test-resources/log4j.properties 
Fri Feb  1 09:14:52 2008
@@ -0,0 +1,26 @@
+#
+# 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.
+#
+
+# Set root category priority to INFO and its only appender to CONSOLE.
+log4j.rootCategory=DEBUG, CONSOLE
+
+# CONSOLE is set to be a ConsoleAppender using a PatternLayout.
+log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
+log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
+log4j.appender.CONSOLE.layout.ConversionPattern=%d %-5p %c - %m%n



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to