Print node version when printing versions.

This commit is contained in:
Tobias Lidskog 2015-02-04 23:34:19 +01:00
parent 88dba8acc8
commit ced3ba65f4
2 changed files with 4 additions and 3 deletions

View File

@ -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
------------------------

View File

@ -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();
});
}