From 396cf2fcea773078e7e80655df56325b9728f9b2 Mon Sep 17 00:00:00 2001 From: Nicholas Albion Date: Fri, 29 Sep 2023 18:38:25 +1000 Subject: [PATCH] log prompt name at INFO --- pilot/utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pilot/utils/utils.py b/pilot/utils/utils.py index 799f8bc..03fbca8 100644 --- a/pilot/utils/utils.py +++ b/pilot/utils/utils.py @@ -39,7 +39,7 @@ def get_prompt(prompt_name, data=None): data.update(get_prompt_components()) - logger.debug(f"Getting prompt for {prompt_name}") # logging here + logger.info(f"Getting prompt for {prompt_name}") # Load the template template = env.get_template(prompt_name)