From 37777269247c76d52485a97004176eb3d8a4114c Mon Sep 17 00:00:00 2001 From: Sergey Lebedev Date: Mon, 31 Oct 2022 17:49:28 +0000 Subject: [PATCH] CORE: change log level of config_modify --- src/core/ucc_context.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/ucc_context.c b/src/core/ucc_context.c index 7f14e83167..432e813256 100644 --- a/src/core/ucc_context.c +++ b/src/core/ucc_context.c @@ -222,8 +222,8 @@ ucc_status_t ucc_context_config_modify(ucc_context_config_t *config, if (0 == strncmp(tokens[i], "cl/", 3)) { cl_cfg = find_cl_context_config(config, component); if (!cl_cfg) { - ucc_error("required CL %s is not part of the context", - component); + ucc_info("required CL %s is not part of the context", + component); status = UCC_ERR_NOT_FOUND; goto err; } @@ -238,8 +238,8 @@ ucc_status_t ucc_context_config_modify(ucc_context_config_t *config, } else if (0 == strncmp(tokens[i], "tl/", 3)) { tl_cfg = find_tl_context_config(config, component); if (!tl_cfg) { - ucc_error("required TL %s is not part of the context", - component); + ucc_info("required TL %s is not part of the context", + component); status = UCC_ERR_NOT_FOUND; goto err; }