Skip to content
Snippets Groups Projects
Commit c0547dab authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

Restore printing of jobid with SLURM_DEBUG=1

parent ff23600d
No related branches found
No related tags found
No related merge requests found
...@@ -225,8 +225,7 @@ int srun(int ac, char **av) ...@@ -225,8 +225,7 @@ int srun(int ac, char **av)
} }
if (_become_user () < 0) if (_become_user () < 0)
info ("Warning: unable to assume uid=%lu\n", opt.uid); info ("Warning: unable to assume uid=%lu\n", opt.uid);
if (_verbose) _print_job_information(resp);
_print_job_information(resp);
job = job_create_allocation(resp); job = job_create_allocation(resp);
if(!job) if(!job)
...@@ -305,8 +304,7 @@ int srun(int ac, char **av) ...@@ -305,8 +304,7 @@ int srun(int ac, char **av)
sig_setup_sigmask(); sig_setup_sigmask();
if ( !(resp = allocate_nodes()) ) if ( !(resp = allocate_nodes()) )
exit(1); exit(1);
if (_verbose) _print_job_information(resp);
_print_job_information(resp);
job = job_create_allocation(resp); job = job_create_allocation(resp);
if(!job) if(!job)
exit(1); exit(1);
...@@ -554,7 +552,7 @@ _print_job_information(resource_allocation_response_msg_t *resp) ...@@ -554,7 +552,7 @@ _print_job_information(resource_allocation_response_msg_t *resp)
else else
break; break;
} }
info("%s",job_details); verbose("%s",job_details);
} }
......
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