Index: ammosreader/PPDWContainer.py
===================================================================
--- ammosreader/PPDWContainer.py	(revision 5d039b8e61a151f3825d977516c4463113fc9919)
+++ ammosreader/PPDWContainer.py	(revision e4e63a33bb3ac7e25cde7abca3d43e55f42eadb4)
@@ -25,4 +25,5 @@
 
     def as_pulse_dict(self):
+        print(datetime.now())
         pulse_dict = {}
         pulse_dict[0] = self.signals[0].to_json()
@@ -31,4 +32,5 @@
             pulse_dict[index]["dtoa"] = (current_pdw.time_of_arrival - pulse_dict[index]["time of arrival"]).item()/1000.0
         pulse_dict[index+1]["dtoa"] = 0.0  # np.timedelta64(0, 'us')
+        print(datetime.now())
         return pulse_dict
 
Index: ammosreader/PPDWReader.py
===================================================================
--- ammosreader/PPDWReader.py	(revision 5d039b8e61a151f3825d977516c4463113fc9919)
+++ ammosreader/PPDWReader.py	(revision e4e63a33bb3ac7e25cde7abca3d43e55f42eadb4)
@@ -23,5 +23,5 @@
                     break
                 if self.cursor + 32 >= len(self.content):
-                    # print('Can not read all 32 bytes of next PDW')
+                    # print('Can not read all 32 bytes of next PDW. EOF')
                     break
                 self.container.add(PDW.from_bytes(current_bytes))
