Log user data directory

pull/749/head
lilia 8 years ago committed by Scott Nonnenberg
parent bdeee1d2b1
commit 46b0146a4c
No known key found for this signature in database
GPG Key ID: A4931C09644C654B

@ -57,8 +57,9 @@ const config = require('config');
// use a separate data directory for development
if (config.has('storageProfile')) {
app.setPath('userData', path.join(app.getPath('appData'),
'Signal-' + config.get('storageProfile')));
var userData = path.join(app.getPath('appData'), 'Signal-' + config.get('storageProfile'));
app.setPath('userData', userData);
console.log('userData ' + userData);
}
// Keep a global reference of the window object, if you don't, the window will

Loading…
Cancel
Save