From cb128ab87bf20caa615ffe7b47cf7a42f85785cf Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 1 Sep 2005 15:52:37 +0000 Subject: [PATCH] Be a little more friendly and tell the user we couldn't reach their specified universe... :-) This commit was SVN r7132. --- orte/mca/sds/base/sds_base_universe.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orte/mca/sds/base/sds_base_universe.c b/orte/mca/sds/base/sds_base_universe.c index 6ccfcce32d..daf186482d 100644 --- a/orte/mca/sds/base/sds_base_universe.c +++ b/orte/mca/sds/base/sds_base_universe.c @@ -98,6 +98,8 @@ orte_sds_base_basic_contact_universe(void) return ret; } } else { /* user-specified name - abort */ + opal_output(0, "orte_init: could not contact the specified universe name %s", + orte_universe_info.name); return ORTE_ERR_UNREACH; } }