You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mi...@apache.org on 2008/07/02 03:12:23 UTC

svn commit: r673251 - /ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/Properties.java

Author: midon
Date: Tue Jul  1 18:12:22 2008
New Revision: 673251

URL: http://svn.apache.org/viewvc?rev=673251&view=rev
Log:
micro commit to fix a logging message

Modified:
    ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/Properties.java

Modified: ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/Properties.java
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/Properties.java?rev=673251&r1=673250&r2=673251&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/Properties.java (original)
+++ ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/Properties.java Tue Jul  1 18:12:22 2008
@@ -118,7 +118,7 @@
         }
 
         public static Options translate(Map<String, String> properties, Options options) {
-            if (log.isDebugEnabled()) log.debug("Translating IL Properties for Axis2");
+            if (log.isDebugEnabled()) log.debug("Translating Properties for Axis2");
             if (properties.isEmpty()) return options;
             if (properties.containsKey(PROP_HTTP_CONNECTION_TIMEOUT)) {
                 final String value = properties.get(PROP_HTTP_CONNECTION_TIMEOUT);
@@ -175,7 +175,7 @@
         }
 
         public static HttpParams translate(Map<String, String> properties, HttpParams p) {
-            if (log.isDebugEnabled()) log.debug("Translating IL Properties for HttpClient. Properties size="+properties.size());
+            if (log.isDebugEnabled()) log.debug("Translating Properties for HttpClient. Properties size="+properties.size());
             if (properties.isEmpty()) return p;
 
             // initialize the collection of headers