From b5c67814e1dc5a376e99c5ac996220337966c276 Mon Sep 17 00:00:00 2001 From: David Ozog Date: Mon, 24 Jun 2024 13:15:46 -0400 Subject: [PATCH] team: swap warn w/debug msg if mask=0 & config=nul --- src/shmem_team.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shmem_team.c b/src/shmem_team.c index 84e306ad..d55b5c05 100644 --- a/src/shmem_team.c +++ b/src/shmem_team.c @@ -337,8 +337,8 @@ int shmem_internal_team_split_strided(shmem_internal_team_t *parent_team, int PE if (config_mask == 0) { if (config != NULL) { - RAISE_WARN_MSG("%s %s\n", "team_split_strided operation encountered an unexpected", - "non-NULL config structure passed with a config_mask of 0."); + DEBUG_MSG("%s %s\n", "team_split_strided operation encountered an unexpected", + "non-NULL config structure passed with a config_mask of 0."); } shmem_team_config_t defaults; myteam->config_mask = 0;