You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ve...@apache.org on 2008/11/10 00:41:56 UTC

svn commit: r712584 - /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/soap/impl/builder/StAXSOAPModelBuilder.java

Author: veithen
Date: Sun Nov  9 15:41:56 2008
New Revision: 712584

URL: http://svn.apache.org/viewvc?rev=712584&view=rev
Log:
Fixed typo in logging instruction.

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/soap/impl/builder/StAXSOAPModelBuilder.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/soap/impl/builder/StAXSOAPModelBuilder.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/soap/impl/builder/StAXSOAPModelBuilder.java?rev=712584&r1=712583&r2=712584&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/soap/impl/builder/StAXSOAPModelBuilder.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/soap/impl/builder/StAXSOAPModelBuilder.java Sun Nov  9 15:41:56 2008
@@ -221,8 +221,8 @@
         }
 
         if (isDebugEnabled) {
-            log.debug("Build the OMElelment " + node.getLocalName() +
-                    "By the StaxSOAPModelBuilder");
+            log.debug("Build the OMElement " + node.getLocalName() +
+                    " by the StaxSOAPModelBuilder");
         }
         return node;
     }