Skip to content

Commit e682b5d

Browse files
author
Ralph Castain
authored
Merge pull request #3523 from rhc54/topic/cleanup
Remove debug
2 parents 23af6c9 + b527c40 commit e682b5d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

orte/mca/rmaps/base/rmaps_base_support_fns.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,15 +471,13 @@ int orte_rmaps_base_get_target_nodes(opal_list_t *allocated_nodes, orte_std_cntr
471471
item = opal_list_get_first(allocated_nodes);
472472
while (item != opal_list_get_end(allocated_nodes)) {
473473
node = (orte_node_t*)item;
474-
opal_output(0, "CHECKING NODE %s", node->name);
475474
/** save the next pointer in case we remove this node */
476475
next = opal_list_get_next(item);
477476
/* if the hnp was not allocated, or flagged not to be used,
478477
* then remove it here */
479478
if (!orte_hnp_is_allocated || (ORTE_GET_MAPPING_DIRECTIVE(policy) & ORTE_MAPPING_NO_USE_LOCAL)) {
480479
node = (orte_node_t*)opal_pointer_array_get_item(orte_node_pool, 0);
481480
if (node == (orte_node_t*)item) {
482-
opal_output(0, "REMOVING HNP NODE");
483481
opal_list_remove_item(allocated_nodes, item);
484482
OBJ_RELEASE(item); /* "un-retain" it */
485483
item = next;

0 commit comments

Comments
 (0)