From 6b0f901a6a3808ade9d2ee69a36b472761c1e1d0 Mon Sep 17 00:00:00 2001 From: James Foucar Date: Mon, 10 Feb 2025 13:20:31 -0700 Subject: [PATCH] Details of test-mod searching should not be printed to info It clutters-up the output when running create_test. --- CIME/SystemTests/test_mods.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CIME/SystemTests/test_mods.py b/CIME/SystemTests/test_mods.py index 0f163280099..2db22c5833a 100644 --- a/CIME/SystemTests/test_mods.py +++ b/CIME/SystemTests/test_mods.py @@ -43,7 +43,7 @@ def find_test_mods(comp_interface, test_mods): f"Invalid testmod, format should be `${{component}}-${{testmod}}`, got {test_mod!r}" ) - logger.info( + logger.debug( "Searching for testmod {!r} for component {!r}".format(mod_path, component) ) @@ -65,7 +65,7 @@ def find_test_mods(comp_interface, test_mods): if os.path.exists(candidate_path): test_mod_path = candidate_path - logger.info( + logger.debug( "Found testmod {!r} for component {!r} in {!r}".format( mod_path, component, test_mod_path )