From fe75c96040126936b46e0e60bf560b4f0d981541 Mon Sep 17 00:00:00 2001 From: Sergey Lebedev Date: Thu, 25 May 2023 11:43:46 +0400 Subject: [PATCH] TL/SHARP: dont print team create error (#777) --- src/components/tl/sharp/tl_sharp_team.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/tl/sharp/tl_sharp_team.c b/src/components/tl/sharp/tl_sharp_team.c index dadce26f5e..3d1190e62a 100644 --- a/src/components/tl/sharp/tl_sharp_team.c +++ b/src/components/tl/sharp/tl_sharp_team.c @@ -133,8 +133,8 @@ UCC_CLASS_INIT_FUNC(ucc_tl_sharp_team_t, ucc_base_context_t *tl_context, ret = sharp_coll_comm_init(sharp_ctx, &comm_spec, &self->sharp_comm); if (ret < 0) { - tl_error(ctx->super.super.lib, "sharp group create failed:%s(%d)", - sharp_coll_strerror(ret), ret); + tl_debug(ctx->super.super.lib, "sharp group create failed:%s(%d)", + sharp_coll_strerror(ret), ret); status = UCC_ERR_NO_RESOURCE; goto cleanup; }