client: don't write name twice in job log

This commit is contained in:
David Anderson 2013-07-14 22:56:37 -07:00
parent 8949c04a77
commit 338487fd13
1 changed files with 2 additions and 3 deletions

View File

@ -468,11 +468,10 @@ void RESULT::append_log_record() {
job_log_filename(*project, filename, sizeof(filename));
FILE* f = fopen(filename, "ab");
if (!f) return;
fprintf(f, "%.0f ue %f ct %f fe %.0f nm %s et %f es %d name %s\n",
fprintf(f, "%.0f ue %f ct %f fe %.0f nm %s et %f es %d\n",
gstate.now, estimated_runtime_uncorrected(), final_cpu_time,
wup->rsc_fpops_est, name, final_elapsed_time,
exit_status,
name
exit_status
);
fclose(f);
}