From 922f73bce442984dbfdde4411d9981cbb3c047d1 Mon Sep 17 00:00:00 2001 From: Gabor Kovacs Date: Mon, 5 Feb 2024 14:50:14 -0800 Subject: [PATCH] Add pipeline suffix logging to n5tozarr and zarrmscale outputs. --- src/aind_exaspim_pipeline_utils/n5tozarr/n5tozarr_da.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/aind_exaspim_pipeline_utils/n5tozarr/n5tozarr_da.py b/src/aind_exaspim_pipeline_utils/n5tozarr/n5tozarr_da.py index 5ed5777..9e0c1a2 100644 --- a/src/aind_exaspim_pipeline_utils/n5tozarr/n5tozarr_da.py +++ b/src/aind_exaspim_pipeline_utils/n5tozarr/n5tozarr_da.py @@ -325,6 +325,7 @@ def n5tozarr_da_converter(): # pragma: no cover LOGGER.setLevel(logging.INFO) capsule_manifest = exaspim_manifest.get_capsule_manifest() + LOGGER.info("This is pipeline run: %s", capsule_manifest.pipeline_suffix) config = capsule_manifest.n5_to_zarr.dict() if config is None: raise ValueError("Manifest does not contain configuration for n5tozarr processing") @@ -439,6 +440,7 @@ def zarr_multiscale_converter(): # pragma: no cover LOGGER.setLevel(logging.INFO) capsule_manifest = exaspim_manifest.get_capsule_manifest() + LOGGER.info("This is pipeline run: %s", capsule_manifest.pipeline_suffix) config = capsule_manifest.zarr_multiscale.dict() if config is None: raise ValueError("Manifest does not contain configuration for zarr_multiscale processing")