Index: /trunk/FACT++/src/StateMachineImp.cc
===================================================================
--- /trunk/FACT++/src/StateMachineImp.cc	(revision 10976)
+++ /trunk/FACT++/src/StateMachineImp.cc	(revision 10977)
@@ -248,5 +248,5 @@
     const string fmt = evt->GetFormat();
 
-    // 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
     const Converter conv(lout, fmt, false);
@@ -311,5 +311,9 @@
 
     if (IsRunning())
-        PushEvent(new Event(evt, ptr, siz));
+    {
+        Event *event = new Event(evt, ptr, siz);
+        Debug("Posted: "+event->GetName());
+        PushEvent(event);
+    }
     else
     {
@@ -915,4 +919,6 @@
 bool StateMachineImp::HandleEvent(const EventImp &evt)
 {
+    Debug("Handle: "+evt.GetName());
+
     // Get the new state from the command
     const int commandstate = evt.GetTargetState();
