Index: common/MessageProcessor.cpp
===================================================================
--- common/MessageProcessor.cpp	(revision 9fe18076656338f5d28fc6982600f7aae89c503c)
+++ common/MessageProcessor.cpp	(revision 934ab537423a0a0d52c3c4714c686a3b86fae198)
@@ -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();
