diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index ae5b57c45025b8ba61de3f9cb66520627f1a0282..95266eb3c52bd87d2bdd7b5bb49806c66608f9a7 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -314,6 +314,7 @@ def run(pirep_dct, platform, outfile=None, outfile_l1b=None, dt_str_start=None,
 
         clvr_file = clvr_ds.get_file(time)[0]
         if clvr_file is None:
+            print('run: Problem getting file from Datasource', get_time_tuple_utc(time))
             continue
 
         if clvr_file != last_clvr_file:
@@ -329,7 +330,7 @@ def run(pirep_dct, platform, outfile=None, outfile_l1b=None, dt_str_start=None,
                 last_h5f.close()
             last_h5f = h5f
             last_clvr_file = clvr_file
-            print(datetime.datetime.fromtimestamp(time))
+            print(get_time_tuple_utc(time))
         else:
             h5f = last_h5f
 
@@ -343,6 +344,7 @@ def run(pirep_dct, platform, outfile=None, outfile_l1b=None, dt_str_start=None,
 
             cc_a, ll_a = nav.earth_to_lc_s(lon_s, lat_s)  # non-navigable, skip
             if cc_a[0] < 0 or ll_a[0] < 0:
+                print('Navigation problem: ', lon, lat)
                 continue
 
             if skip and (cc_a[0] == cc and ll_a[0] == ll):  # time adjacent duplicate, skip
@@ -368,9 +370,11 @@ def run(pirep_dct, platform, outfile=None, outfile_l1b=None, dt_str_start=None,
                     cnt_b += 1
 
             if cnt_a > 0 and cnt_a != len(ds_list):
+                print('count match problem')
                 continue
 
             if cnt_b > 0 and cnt_b != len(l1b_ds_list):
+                print('count match problem')
                 continue
 
             if cnt_a == len(ds_list) and cnt_b == len(l1b_ds_list):