diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2022-02-02 14:50:44 +0100 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2022-02-02 17:37:00 +0100 |
| commit | 90f556b9616eb65e40af80915606637473191afe (patch) | |
| tree | f3438239c451d06d8ac116345542d0e9a9a82b9a | |
| parent | 9b56d566d06126991fe3ad9ca5eb37cfcf12da58 (diff) | |
| download | mullvadvpn-90f556b9616eb65e40af80915606637473191afe.tar.xz mullvadvpn-90f556b9616eb65e40af80915606637473191afe.zip | |
TunnelManager: add message to start tunnel error
| -rw-r--r-- | ios/MullvadVPN/TunnelManager/TunnelManager.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/TunnelManager/TunnelManager.swift b/ios/MullvadVPN/TunnelManager/TunnelManager.swift index 44e02c5524..997aa634ad 100644 --- a/ios/MullvadVPN/TunnelManager/TunnelManager.swift +++ b/ios/MullvadVPN/TunnelManager/TunnelManager.swift @@ -201,7 +201,7 @@ class TunnelManager: TunnelManagerStateDelegate dispatchPrecondition(condition: .onQueue(self.stateQueue)) if case .failure(let error) = completion { - self.logger.error(chainedError: error) + self.logger.error(chainedError: error, message: "Failed to start the tunnel.") } }) |
