Skip to content

Commit

Permalink
minor improvement on summary report
Browse files Browse the repository at this point in the history
  • Loading branch information
kensoh committed May 24, 2021
1 parent 6641ada commit 5a4f31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tagui_report.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
$finish_timestamp = str_replace('"', '""', $finish_timestamp);
$error_status = str_replace('"', '""', $error_status);

$audit_output_header = '"#","AUTOMATION FLOW","START TIME","FINISH TIME","ERROR STATUS","LOG FILE"';
$audit_output_header = '"#","WORKFLOW","START TIME","TIME TAKEN","ERROR STATUS","LOG FILE"';
if (!file_exists('tagui_report.csv')) file_put_contents('tagui_report.csv', $audit_output_header . "\r\n");
$audit_output_count = @count(file('tagui_report.csv')) - 1 + 1; // to track and increment entry # in audit file
$html_log_file = $script . '_' . $audit_output_count . '.html'; // to allow log persistence without overwriting
Expand Down

0 comments on commit 5a4f31d

Please sign in to comment.