From 46b0146a4ce56105024075fa1bb55ad3553fc399 Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 13 Apr 2017 18:24:10 -0700 Subject: [PATCH] Log user data directory --- main.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 2307bcd79..b1d740cce 100644 --- a/main.js +++ b/main.js @@ -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