Skip to content

Commit

Permalink
add ancestry/provenance sweeper version to logs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdunnjpl committed Jan 29, 2024
1 parent 3cb3699 commit 5139ede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pds/registrysweepers/ancestry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run(
):
configure_logging(filepath=log_filepath, log_level=log_level)

log.info("Starting ancestry sweeper")
log.info(f"Starting ancestry v{SWEEPERS_ANCESTRY_VERSION} sweeper processing...")

bundle_records = get_bundle_ancestry_records(client, registry_mock_query_f)
collection_records = list(get_collection_ancestry_records(client, registry_mock_query_f))
Expand Down
2 changes: 1 addition & 1 deletion src/pds/registrysweepers/provenance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def run(
):
configure_logging(filepath=log_filepath, log_level=log_level)

log.info("Starting provenance sweeper processing...")
log.info(f"Starting provenance v{SWEEPERS_PROVENANCE_VERSION} sweeper processing...")

records = get_records(client)
record_chains = create_record_chains(records)
Expand Down

0 comments on commit 5139ede

Please sign in to comment.