Skip to content
Snippets Groups Projects
Commit 272f3edb authored by Moe Jette's avatar Moe Jette
Browse files

Change logging to be a bit less verbose

parent 126cb368
No related branches found
No related tags found
No related merge requests found
...@@ -1289,7 +1289,8 @@ extern int select_p_node_init(struct node_record *node_ptr, int node_cnt) ...@@ -1289,7 +1289,8 @@ extern int select_p_node_init(struct node_record *node_ptr, int node_cnt)
select_node_ptr[i].alloc_sockets = 0; select_node_ptr[i].alloc_sockets = 0;
select_node_ptr[i].alloc_memory = 0; select_node_ptr[i].alloc_memory = 0;
if ((cr_type == CR_CORE) || (cr_type == CR_CORE_MEMORY)) { if ((cr_type == CR_CORE) || (cr_type == CR_CORE_MEMORY)) {
info("select_g_node_init sockets %d ", info("select_g_node_init node:%s sockets:%u",
select_node_ptr[i].name,
select_node_ptr[i].node_ptr->sockets); select_node_ptr[i].node_ptr->sockets);
select_node_ptr[i].alloc_cores = select_node_ptr[i].alloc_cores =
xmalloc(sizeof(int) * xmalloc(sizeof(int) *
...@@ -1303,7 +1304,7 @@ extern int select_p_node_init(struct node_record *node_ptr, int node_cnt) ...@@ -1303,7 +1304,7 @@ extern int select_p_node_init(struct node_record *node_ptr, int node_cnt)
if (prev_select_node_ptr && (i < prev_select_node_cnt) && if (prev_select_node_ptr && (i < prev_select_node_cnt) &&
(strcmp(prev_select_node_ptr[i].name, (strcmp(prev_select_node_ptr[i].name,
select_node_ptr[i].name) == 0)) { select_node_ptr[i].name) == 0)) {
info("recovered cons_res node data for %s", debug2("recovered cons_res node data for %s",
select_node_ptr[i].name); select_node_ptr[i].name);
select_node_ptr[i].alloc_lps select_node_ptr[i].alloc_lps
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment