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

Add uid to job update logging

parent bd3657c9
No related branches found
No related tags found
No related merge requests found
...@@ -2536,12 +2536,12 @@ static void _slurm_rpc_update_job(slurm_msg_t * msg) ...@@ -2536,12 +2536,12 @@ static void _slurm_rpc_update_job(slurm_msg_t * msg)
/* return result */ /* return result */
if (error_code) { if (error_code) {
error("_slurm_rpc_update_job JobId=%u: %s", error("_slurm_rpc_update_job JobId=%u uid=%d: %s",
job_desc_msg->job_id, slurm_strerror(error_code)); job_desc_msg->job_id, uid, slurm_strerror(error_code));
slurm_send_rc_msg(msg, error_code); slurm_send_rc_msg(msg, error_code);
} else { } else {
debug2("_slurm_rpc_update_job complete JobId=%u %s", info("_slurm_rpc_update_job complete JobId=%u uid=%d %s",
job_desc_msg->job_id, TIME_STR); job_desc_msg->job_id, uid, TIME_STR);
slurm_send_rc_msg(msg, SLURM_SUCCESS); slurm_send_rc_msg(msg, SLURM_SUCCESS);
/* Below functions provide their own locking */ /* Below functions provide their own locking */
schedule(0); schedule(0);
......
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