summaryrefslogtreecommitdiffhomepage
path: root/app/lib
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2018-04-24 13:19:30 +0100
committerEmīls Piņķis <emils@mullvad.net>2018-04-24 13:19:30 +0100
commit3c69b0925b0c4b9aee6457d34d86bb59bfdb3f59 (patch)
tree134ac970c329eadb40d61baed3f6f725c8740a17 /app/lib
parentc03640de300efcf5b7ada700a64850dca3a7541e (diff)
parentd08775aa954c90f5002d255210f70f822a96c52f (diff)
downloadmullvadvpn-3c69b0925b0c4b9aee6457d34d86bb59bfdb3f59.tar.xz
mullvadvpn-3c69b0925b0c4b9aee6457d34d86bb59bfdb3f59.zip
Merge branch 'linux-always-display-window'
Diffstat (limited to 'app/lib')
-rw-r--r--app/lib/backend.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/lib/backend.js b/app/lib/backend.js
index 6f54b1b26e..941f73dc48 100644
--- a/app/lib/backend.js
+++ b/app/lib/backend.js
@@ -485,7 +485,8 @@ export class Backend {
this._ipc.registerStateListener(newState => {
const connectionState = this._securityStateToConnectionState(newState);
- log.debug('Got new state from backend ${newState}, translated to ${connectionState}');
+ log.debug(`Got new state from backend {state: ${newState.state}, \
+ target_state: ${newState.target_state}}, translated to '${connectionState}'`);
this._dispatchConnectionState(connectionState);
this.sync();
});