From 6e28c93e8969c3f7ad958880d0cced5f3318efbd Mon Sep 17 00:00:00 2001 From: Ian Grant <ian.conway.grant@gmail.com> Date: Wed, 14 May 2025 21:31:17 -0400 Subject: [PATCH] fix: downgraded logging level for full config printout --- run_on_maap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_on_maap.py b/run_on_maap.py index f5c2135..376e42f 100644 --- a/run_on_maap.py +++ b/run_on_maap.py @@ -193,7 +193,7 @@ def main( f"from {model_config_path}: {str(e)}") raise - logging.info(f"Configuration:\n{full_model_config}") + logging.debug(f"Configuration:\n{full_model_config}") # Query the CMR for granules product_granules: Dict[str, List[Granule]] = {} -- GitLab