Index: /trunk/FACT++/src/ServiceList.cc
===================================================================
--- /trunk/FACT++/src/ServiceList.cc	(revision 10326)
+++ /trunk/FACT++/src/ServiceList.cc	(revision 10327)
@@ -734,9 +734,7 @@
     const string fmt = GetFormat(cmd);
 
-    // Convert the user enetered data according to the format string
+    // Convert the user entered data according to the format string
     // into a data block which will be attached to the event
-    lout << kBlue << cmd;
-
-    const Converter conv(lout, fmt);
+    const Converter conv(lout, fmt, false);
     if (!conv)
     {
@@ -747,5 +745,7 @@
     try
     {
+        lout << kBlue << cmd;
         const vector<char> v = conv.GetVector(str.substr(p0));
+        lout << endl;
 
         const int rc = DimClient::sendCommand(cmd.c_str(), (void*)v.data(), v.size());
@@ -757,5 +757,5 @@
     catch (const std::runtime_error &e)
     {
-        lout << kRed << e.what() << endl;
+        lout << endl << kRed << e.what() << endl;
         return false;
     }
Index: /trunk/FACT++/src/StateMachineImp.cc
===================================================================
--- /trunk/FACT++/src/StateMachineImp.cc	(revision 10326)
+++ /trunk/FACT++/src/StateMachineImp.cc	(revision 10327)
@@ -231,6 +231,4 @@
     // Convert the user enetered data according to the format string
     // into a data block which will be attached to the event
-    lout << kBlue << name;
-
     const Converter conv(lout, fmt, false);
     if (!conv)
@@ -242,10 +240,13 @@
     try
     {
+        lout << kBlue << name;
         const vector<char> v = conv.GetVector(str.substr(p0));
+        lout << endl;
+
         return PostEvent(*evt, v.data(), v.size());
     }
     catch (const std::runtime_error &e)
     {
-        lout << kRed << e.what() << endl;
+        lout << endl << kRed << e.what() << endl;
     }
 
