From 5c34fdbf36f3e326470cb98fe259a8ab4a21d4cb Mon Sep 17 00:00:00 2001 From: Lisa Dierkhising Date: Tue, 23 Aug 2022 09:14:00 -0500 Subject: [PATCH] update converter completion log message Signed-off-by: Lisa Dierkhising --- src/linuxforhealth/csvtofhir/converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linuxforhealth/csvtofhir/converter.py b/src/linuxforhealth/csvtofhir/converter.py index f6248aa..bfd1168 100644 --- a/src/linuxforhealth/csvtofhir/converter.py +++ b/src/linuxforhealth/csvtofhir/converter.py @@ -145,7 +145,7 @@ def _convert_row_to_fhir(row: pd.Series) -> Tuple[Any, str, List[str]]: resource_meta, row.rowNum)) logger.info(f"Finished converting row {row.rowNum} file_path={row.filePath} " \ - + (" The following resourceTypes were created: ") \ + + (f" Number of resources created: {len(result)} The following resourceTypes were created: ") \ + ', '.join(support.get_fhir_resource_types(result))) except Exception as ex: logger.error(f"Convert failed with {ex.__class__.__name__} Error on converting row {row.rowNum} " \