From e6197afab65bae00f86d8a4224d5a4a6899078c6 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Thu, 25 Mar 2021 11:35:57 -0500
Subject: [PATCH] snapshot...

---
 modules/icing/pirep_goes.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index c162fbe0..8ce2d6c9 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -46,8 +46,10 @@ def setup():
 def get_clavrx_datasource(timestamp):
     dt_obj, time_tup = get_time_tuple_utc(timestamp)
     date_dir_str = dt_obj.strftime(dir_fmt)
+    print(dt_obj)
     ds = ds_dct.get(date_dir_str)
     if ds is None:
+        print('  new datasource: ', date_dir_str)
         ds = CLAVRx(clavrx_dir + date_dir_str + '/')
         ds_dct[date_dir_str] = ds
     return ds
-- 
GitLab