Skip to content

Commit b61a034

Browse files
committed
Add priority information to the test log
1 parent 229f5bd commit b61a034

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

www/common_lib.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2536,7 +2536,7 @@ function makeLogLine($line_data) {
25362536
$log = $line_data['date'] . "\t" . $line_data['ip'] . "\t0" . "\t0";
25372537
$log .= "\t" . $line_data['guid'] . "\t" . $line_data['url'] . "\t". $line_data['location'] . "\t" . $line_data['private'];
25382538
$log .= "\t". $line_data['testUID'] . "\t" . $line_data['testUser'] . "\t" . $line_data['video'] . "\t" . $line_data['label'];
2539-
$log .= "\t". $line_data['owner'] . "\t". $line_data['key'] . "\t" . $line_data['count'] . "\r\n";
2539+
$log .= "\t". $line_data['owner'] . "\t". $line_data['key'] . "\t" . $line_data['count'] . "\t" . $line_data['priority'] . "\r\n";
25402540

25412541
return $log;
25422542
}

www/runtest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1894,6 +1894,7 @@ function LogTest(&$test, $testId, $url)
18941894
'owner' => @$test['owner'],
18951895
'key' => @$test['key'],
18961896
'count' => @$pageLoads,
1897+
'priority' => @$test['priority'],
18971898
);
18981899

18991900
$log = makeLogLine($line_data);

0 commit comments

Comments
 (0)