Skip to content

Commit b914ea1

Browse files
committed
Tweak to status messages.
1 parent 4799c31 commit b914ea1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lighthouse-core/gather/gather-runner.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class GatherRunner {
116116

117117
if (config.trace) {
118118
pass = pass.then(_ => {
119-
log.log('status', `Gathering: trace "${traceName}"`);
119+
log.log('status', 'Retrieving trace');
120120
return driver.endTrace().then(traceContents => {
121121
// Before Chrome 54.0.2816 (codereview.chromium.org/2161583004),
122122
// traceContents was an array of trace events. After this point,
@@ -130,14 +130,14 @@ class GatherRunner {
130130

131131
loadData.traces[traceName] = traceContents;
132132
loadData.traceEvents = traceContents.traceEvents;
133-
log.verbose('statusEnd', `Gathering: trace "${traceName}"`);
133+
log.verbose('statusEnd', 'Retrieving trace');
134134
});
135135
});
136136
}
137137

138138
if (config.network) {
139139
pass = pass.then(_ => {
140-
const status = 'Gathering: network records';
140+
const status = 'Retrieving network records';
141141
log.log('status', status);
142142
return driver.endNetworkCollect().then(networkRecords => {
143143
loadData.networkRecords = networkRecords;
@@ -149,7 +149,7 @@ class GatherRunner {
149149
return gatherers
150150
.reduce((chain, gatherer) => {
151151
return chain.then(_ => {
152-
const status = `Gathering: ${gatherer.name}`;
152+
const status = `Retrieving: ${gatherer.name}`;
153153
log.log('status', status);
154154
return Promise.resolve(gatherer.afterPass(options, loadData)).then(ret => {
155155
log.verbose('statusEnd', status);

0 commit comments

Comments
 (0)