stanley-king 2 years ago
parent
commit
2a12e67935
3 changed files with 3 additions and 1 deletions
  1. 1 0
      plot/refill/ChannelWriter.py
  2. 1 1
      plot/refill/MerchantWriter.py
  3. 1 0
      plot/refill/NetchkWriter.py

+ 1 - 0
plot/refill/ChannelWriter.py

@@ -75,6 +75,7 @@ class ChannelWriter(DataWriteStream):
     def path_pos(self, chname, time, spec, card_type):
         today = day_stamp(time)
         path = f'/{self._version}/{today}/{chname}/{card_type}/{spec}'
+        log.debug("%s,%s", 'ChannelWriter', path)
 
         hfive = self.file
         if path not in hfive:

+ 1 - 1
plot/refill/MerchantWriter.py

@@ -77,7 +77,7 @@ class MerchantWriter(DataWriteStream):
         today = day_stamp(time)
         path = f'/{self._version}/{today}/{mchid}/{card_type}/{spec}'
 
-        # log.debug("%s,%s",'MerchantWriter',path)
+        log.debug("%s,%s", 'MerchantWriter', path)
         hfive = self.file
         if path not in hfive:
             dim = pos_map.dim()

+ 1 - 0
plot/refill/NetchkWriter.py

@@ -47,6 +47,7 @@ class NetchkWriter(DataWriteStream):
     def path_pos(self, chname, time):
         today = day_stamp(time)
         path = f'/{self._version}/{today}/{chname}'
+        log.debug("%s,%s", 'NetchkWriter', path)
 
         hfive = self.file
         if path not in hfive: