Skip to content
Snippets Groups Projects
Commit ca41f9ae authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- changed timestamp output using localtime with Timezone information

parent 9282ba93
No related branches found
No related tags found
No related merge requests found
......@@ -373,7 +373,7 @@ if (defined $search_dir && -d "$search_dir") {
}
if ($result->{errors} > 0) {
my $timestamp = strftime("%Y-%m-%d %H:%M:%S", gmtime(time));
my $timestamp = strftime("%Y-%m-%d %H:%M:%S %z (%Z)", localtime(time));
path($report_file)->append_utf8("$timestamp, IE $_ with following errors:\n");
foreach my $errors (@{ $result->{error_description} }) {
path($report_file)->append_utf8("\t$errors\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment