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