From 5a87c1ca444ae35d30509615f07e6bcaf936a8d5 Mon Sep 17 00:00:00 2001 From: Danny Auble <da@schedmd.com> Date: Mon, 7 Nov 2016 15:30:51 -0700 Subject: [PATCH] Make debug statement happen less often since this happens for each task and can get quite verbose on a KNL node. --- src/plugins/task/cray/task_cray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/task/cray/task_cray.c b/src/plugins/task/cray/task_cray.c index 0862a8d023f..50ff63a791e 100644 --- a/src/plugins/task/cray/task_cray.c +++ b/src/plugins/task/cray/task_cray.c @@ -324,8 +324,8 @@ extern int task_p_pre_launch (stepd_step_rec_t *job) START_TIMER; apid = SLURM_ID_HASH(job->jobid, job->stepid); - debug("task_p_pre_launch: %u.%u, apid %"PRIu64", task %d", - job->jobid, job->stepid, apid, job->envtp->procid); + debug2("task_p_pre_launch: %u.%u, apid %"PRIu64", task %d", + job->jobid, job->stepid, apid, job->envtp->procid); /* * Send the rank to the application's PMI layer via an environment -- GitLab