diff --git a/compass/scripts/process.py b/compass/scripts/process.py index 65be13a93..1861bad13 100644 --- a/compass/scripts/process.py +++ b/compass/scripts/process.py @@ -559,7 +559,12 @@ def known_local_docs(self): known_local_docs = self.process_kwargs.known_local_docs or {} if isinstance(known_local_docs, str): known_local_docs = load_config(known_local_docs) - return {int(key): val for key, val in known_local_docs.items()} + inventory = {int(key): val for key, val in known_local_docs.items()} + logger.trace( + "Loaded known local docs for FIPS codes: %s", + list(inventory.keys()), + ) + return inventory @cached_property def known_doc_urls(self): @@ -855,8 +860,9 @@ async def run(self): start_time = time.monotonic() extraction_context = None logger.info( - "Kicking off processing for jurisdiction: %s", + "Kicking off processing for jurisdiction: %s (%s)", self.jurisdiction.full_name, + self.jurisdiction.code, ) try: extraction_context = await self._run()