File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -455,7 +455,9 @@ def cli(
455
455
minimum_scan_window : timedelta | None ,
456
456
) -> None :
457
457
init_logging (
458
- open (event_log_file , "ab" ) if event_log_file else None , verbosity = verbose
458
+ open (event_log_file , "ab" ) if event_log_file else None ,
459
+ verbosity = verbose ,
460
+ cache_logger_on_first_use = False ,
459
461
)
460
462
461
463
store = SummaryStore .create (
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ def refresh_product_extent(
489
489
log .info ("refresh.regions.start" )
490
490
log .info ("refresh.regions.update.count.and.insert.new" )
491
491
result = self .e_index .upsert_product_regions (product .id )
492
- log .info ("refresh.regions.inserted" , list (result ))
492
+ log .info ("refresh.regions.inserted" , result = list (result ))
493
493
log .info (
494
494
"refresh.regions.update.count.and.insert.new.end" ,
495
495
changed_rows = result .rowcount ,
You can’t perform that action at this time.
0 commit comments