diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2021-03-09 09:12:25 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2021-03-09 11:00:00 +0100 |
| commit | 8ec56a752034458b0676cb04adda7bdb2a23a817 (patch) | |
| tree | e69d2d82184da91bac326f3522e970830ce3a7f8 | |
| parent | 69cd229c5a8528f42b26f1587ec8cc6c77243b28 (diff) | |
| download | mullvadvpn-8ec56a752034458b0676cb04adda7bdb2a23a817.tar.xz mullvadvpn-8ec56a752034458b0676cb04adda7bdb2a23a817.zip | |
Add log message when connected to daemon
| -rw-r--r-- | gui/src/main/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/src/main/index.ts b/gui/src/main/index.ts index fa059e10e0..45a21bf8f6 100644 --- a/gui/src/main/index.ts +++ b/gui/src/main/index.ts @@ -484,6 +484,8 @@ class ApplicationMain { private onDaemonConnected = async () => { this.connectedToDaemon = true; + log.info('Connected to the daemon'); + // subscribe to events try { this.daemonEventListener = this.subscribeEvents(); |
