From 1796d5531fba484e55d39b4de151f0b6c5683915 Mon Sep 17 00:00:00 2001 From: Michael Thornton Date: Tue, 10 Dec 2024 13:35:27 -0800 Subject: [PATCH] tweak logging --- nmdc_automation/import_automation/activity_mapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmdc_automation/import_automation/activity_mapper.py b/nmdc_automation/import_automation/activity_mapper.py index 8b41d77c..b162c41f 100644 --- a/nmdc_automation/import_automation/activity_mapper.py +++ b/nmdc_automation/import_automation/activity_mapper.py @@ -189,7 +189,7 @@ def process_files(files: Union[str, List[str]], data_object_dict: Dict, workflow data_objects_key = "Unique" if unique else "Multiples" data_object_specs = self.import_data["Data Objects"][data_objects_key] for data_object_spec in data_object_specs: - logger.info(f"Processing {data_object_spec['data_object_type']}") + # logger.info(f"Processing {data_object_spec['data_object_type']}") if not filter_import_by_type(self.import_data["Workflows"], data_object_spec["output_of"]): logging.warning(f"Import not enabled for {data_object_spec['output_of']} {data_object_spec['data_object_type']}") continue