@@ -116,7 +116,7 @@ class GatherRunner {
116
116
117
117
if ( config . trace ) {
118
118
pass = pass . then ( _ => {
119
- log . log ( 'status' , `Gathering: trace " ${ traceName } "` ) ;
119
+ log . log ( 'status' , 'Retrieving trace' ) ;
120
120
return driver . endTrace ( ) . then ( traceContents => {
121
121
// Before Chrome 54.0.2816 (codereview.chromium.org/2161583004),
122
122
// traceContents was an array of trace events. After this point,
@@ -130,14 +130,14 @@ class GatherRunner {
130
130
131
131
loadData . traces [ traceName ] = traceContents ;
132
132
loadData . traceEvents = traceContents . traceEvents ;
133
- log . verbose ( 'statusEnd' , `Gathering: trace " ${ traceName } "` ) ;
133
+ log . verbose ( 'statusEnd' , 'Retrieving trace' ) ;
134
134
} ) ;
135
135
} ) ;
136
136
}
137
137
138
138
if ( config . network ) {
139
139
pass = pass . then ( _ => {
140
- const status = 'Gathering: network records' ;
140
+ const status = 'Retrieving network records' ;
141
141
log . log ( 'status' , status ) ;
142
142
return driver . endNetworkCollect ( ) . then ( networkRecords => {
143
143
loadData . networkRecords = networkRecords ;
@@ -149,7 +149,7 @@ class GatherRunner {
149
149
return gatherers
150
150
. reduce ( ( chain , gatherer ) => {
151
151
return chain . then ( _ => {
152
- const status = `Gathering : ${ gatherer . name } ` ;
152
+ const status = `Retrieving : ${ gatherer . name } ` ;
153
153
log . log ( 'status' , status ) ;
154
154
return Promise . resolve ( gatherer . afterPass ( options , loadData ) ) . then ( ret => {
155
155
log . verbose ( 'statusEnd' , status ) ;
0 commit comments