Add node version to debug log

The chrome, electron, and signal versions are already included in the
user agent string.

// FREEBIE
pull/749/head
lilia 8 years ago committed by Scott Nonnenberg
parent 112f5a00ca
commit 878b15c288
No known key found for this signature in database
GPG Key ID: A4931C09644C654B

@ -57,7 +57,7 @@
}; };
console.get = function() { console.get = function() {
return window.navigator.userAgent + return window.navigator.userAgent +
' Signal-Desktop/' + window.config.version + ' node/' + window.config.node_version +
'\n' + log.print(); '\n' + log.print();
}; };
console.post = function(log) { console.post = function(log) {

@ -95,7 +95,8 @@ function createWindow () {
version: package_json.version, version: package_json.version,
buildExpiration: config.get('buildExpiration'), buildExpiration: config.get('buildExpiration'),
serverUrl: config.get('serverUrl'), serverUrl: config.get('serverUrl'),
environment: environment environment: environment,
node_version: process.versions.node
} }
})) }))

Loading…
Cancel
Save