File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -233,14 +233,14 @@ def _not_stored(product: eumdac.product.Product) -> bool:
233233 total_num += 1
234234
235235 if isinstance (item , xr .Dataset ):
236- log .info (f"pulled image for timestamp { pd .Timestamp (item .time .item ())} " )
236+ log .debug (f"pulled image for timestamp { pd .Timestamp (item .time .item ())} " )
237237 results .append (item )
238238
239239 # If we've reached the write block size, concat the datasets and write out
240240 if len (results ) == accum_writes :
241241 ds = xr .concat (results , dim = "time" ) if accum_writes > 1 else results [0 ]
242242
243- log .info (f"saving last { accum_writes } accumulated images" )
243+ log .debug (f"saving last { accum_writes } accumulated images" )
244244
245245 storage .write_to_store (
246246 ds = ds ,
@@ -292,7 +292,7 @@ def _not_stored(product: eumdac.product.Product) -> bool:
292292 if len (results ) > 0 :
293293 ds = xr .concat (results , dim = "time" ) if accum_writes > 1 else results [0 ]
294294
295- log .info (f"saving last { accum_writes } accumulated images" )
295+ log .debug (f"saving last { accum_writes } accumulated images" )
296296
297297 storage .write_to_store (
298298 ds = ds ,
You can’t perform that action at this time.
0 commit comments