From f1fc3443363bf8025fe0e589efb2e3ef915ba761 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Wed, 7 Apr 2010 18:58:17 +0000 Subject: [PATCH] Add some diagnostics This commit was SVN r22941. --- orte/mca/rmcast/udp/rmcast_udp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orte/mca/rmcast/udp/rmcast_udp.c b/orte/mca/rmcast/udp/rmcast_udp.c index 8b4a1e13aa..f247c67fbe 100644 --- a/orte/mca/rmcast/udp/rmcast_udp.c +++ b/orte/mca/rmcast/udp/rmcast_udp.c @@ -276,6 +276,7 @@ static int queue_xmit(rmcast_base_send_t *snd, */ if (ORTE_RMCAST_GROUP_OUTPUT_CHANNEL == channel) { if (NULL == my_group_channel) { + ORTE_ERROR_LOG(ORTE_ERR_NOT_FOUND); return ORTE_ERR_NOT_FOUND; } ch = my_group_channel; @@ -295,6 +296,7 @@ static int queue_xmit(rmcast_base_send_t *snd, } if (NULL == ch) { /* didn't find it */ + ORTE_ERROR_LOG(ORTE_ERR_NOT_FOUND); return ORTE_ERR_NOT_FOUND; }