diff options
Diffstat (limited to 'app/lib')
| -rw-r--r-- | app/lib/backend.js | 3 |
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(); }); |
