Print node version when printing versions.
This commit is contained in:
parent
88dba8acc8
commit
ced3ba65f4
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
version 3.1.2 (NOT YET RELEASED)
|
||||
------------------------
|
||||
* Include Node.js version when printing versions at the start of each run.
|
||||
|
||||
version 3.1.1
|
||||
------------------------
|
||||
|
|
|
|||
|
|
@ -374,9 +374,9 @@ module.exports = {
|
|||
var phantomjsVersion = results[0];
|
||||
var javaVersion = results[1];
|
||||
|
||||
log.info('OS: \'%s\' sitespeed: \'%s\' phantomJs: \'%s\' java: \'%s\' browsertime: \'%s\'',
|
||||
osVersion, sitespeedVersion, phantomjsVersion, javaVersion, browserTimeVersion);
|
||||
return cb(null);
|
||||
log.info('OS: \'%s\', Node.js: \'%s\', sitespeed: \'%s\', phantomJs: \'%s\', java: \'%s\', browsertime: \'%s\'',
|
||||
osVersion, process.version, sitespeedVersion, phantomjsVersion, javaVersion, browserTimeVersion);
|
||||
return cb();
|
||||
});
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue