Skip to content
Snippets Groups Projects
Commit 86c384bc authored by Don Lipari's avatar Don Lipari
Browse files

Converted a couple of info() statements into debug()s in task_affinity.c

parent 513a541c
No related branches found
No related tags found
No related merge requests found
...@@ -191,13 +191,13 @@ extern int task_slurmd_launch_request (uint32_t job_id, ...@@ -191,13 +191,13 @@ extern int task_slurmd_launch_request (uint32_t job_id,
_update_bind_type(req); _update_bind_type(req);
slurm_sprint_cpu_bind_type(buf_type, req->cpu_bind_type); slurm_sprint_cpu_bind_type(buf_type, req->cpu_bind_type);
info("task affinity : before lllp distribution cpu bind " debug("task affinity : before lllp distribution cpu bind "
"method is '%s' (%s)", buf_type, req->cpu_bind); "method is '%s' (%s)", buf_type, req->cpu_bind);
lllp_distribution(req, node_id); lllp_distribution(req, node_id);
slurm_sprint_cpu_bind_type(buf_type, req->cpu_bind_type); slurm_sprint_cpu_bind_type(buf_type, req->cpu_bind_type);
info("task affinity : after lllp distribution cpu bind " debug("task affinity : after lllp distribution cpu bind "
"method is '%s' (%s)", buf_type, req->cpu_bind); "method is '%s' (%s)", buf_type, req->cpu_bind);
} }
......
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