improve logging to chase a test failure.
diff --git a/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java b/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java
index bac073b..4fe655d 100644
--- a/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java
+++ b/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java
@@ -248,6 +248,7 @@
     }
 
     public String sendRequestFile(String endpoint, String filename) {
+        log.debug("Sending SOAP request file " + filename + " to " + endpoint);
         try {
             URL url = new URL(endpoint);
             // override the port if necessary but only if the given port is the default one
diff --git a/axis2-war/src/test/resources/test-log4j.properties b/axis2-war/src/test/resources/test-log4j.properties
index 09b8e7c..2bc7053 100644
--- a/axis2-war/src/test/resources/test-log4j.properties
+++ b/axis2-war/src/test/resources/test-log4j.properties
@@ -38,4 +38,6 @@
 log4j.category.org.apache.ode=INFO
 log4j.category.hibernate=WARN
 log4j.category.org.hibernate=WARN
-log4j.category.org.apache.axis2=INFO
\ No newline at end of file
+log4j.category.org.apache.axis2=INFO
+log4j.category.org.apache.ode.bpel.iapi.BpelEventListener=DEBUG
+log4j.category.org.apache.ode.axis2.Axis2TestBase=DEBUG
\ No newline at end of file