You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2006/03/09 14:24:21 UTC

svn commit: r384504 - /incubator/servicemix/trunk/servicemix-common/src/main/java/org/apache/servicemix/common/ManagementSupport.java

Author: gnodet
Date: Thu Mar  9 05:24:18 2006
New Revision: 384504

URL: http://svn.apache.org/viewcvs?rev=384504&view=rev
Log:
Fix xml generation of error messages

Modified:
    incubator/servicemix/trunk/servicemix-common/src/main/java/org/apache/servicemix/common/ManagementSupport.java

Modified: incubator/servicemix/trunk/servicemix-common/src/main/java/org/apache/servicemix/common/ManagementSupport.java
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-common/src/main/java/org/apache/servicemix/common/ManagementSupport.java?rev=384504&r1=384503&r2=384504&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-common/src/main/java/org/apache/servicemix/common/ManagementSupport.java (original)
+++ incubator/servicemix/trunk/servicemix-common/src/main/java/org/apache/servicemix/common/ManagementSupport.java Thu Mar  9 05:24:18 2006
@@ -140,7 +140,7 @@
                 PrintWriter pw = new PrintWriter(sw2);
                 msg.getException().printStackTrace(pw);
                 pw.close();
-                sw.append("<[CDATA[");
+                sw.append("<![CDATA[");
                 sw.append(sw2.toString());
                 sw.append("]]>");
                 sw.append("</stack-trace>");