Skip to content

Commit

Permalink
change profile column order to make earlier columns more fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed May 13, 2019
1 parent ea914f3 commit 2932e86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypiper/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1195,9 +1195,9 @@ def _report_profile(self, command, lock_name, elapsed_time, memory, pid, args_ha
message_raw = str(pid) + "\t" + \
str(args_hash) + "\t" + \
str(proc_count) + "\t" + \
str(command) + "\t" + \
str(datetime.timedelta(seconds = round(elapsed_time, 2))) + "\t " + \
str(memory) + "\t" + \
str(command) + "\t" + \
str(rel_lock_name)
with open(self.pipeline_profile_file, "a") as myfile:
myfile.write(message_raw + "\n")
Expand Down

0 comments on commit 2932e86

Please sign in to comment.