Index: common/MessageProcessor.cpp
===================================================================
--- common/MessageProcessor.cpp	(revision 9fe18076656338f5d28fc6982600f7aae89c503c)
+++ common/MessageProcessor.cpp	(revision bc702829fa992477124b5b244ae31c4a3d666cdc)
@@ -46,6 +46,9 @@
       bool isDuplicate = false;
 
-      if (ackedMessages.find(msg->id) != ackedMessages.end())
+      if (ackedMessages.find(msg->id) != ackedMessages.end()) {
          isDuplicate = true;
+         cout << "Got duplicate of type " << msg->type << endl;
+      }else
+         cout << "Got message of type " << msg->type << endl;
 
       ackedMessages[msg->id] = getCurrentMillis();
