summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2022-02-02 14:50:44 +0100
committerAndrej Mihajlov <and@mullvad.net>2022-02-02 17:37:00 +0100
commit90f556b9616eb65e40af80915606637473191afe (patch)
treef3438239c451d06d8ac116345542d0e9a9a82b9a
parent9b56d566d06126991fe3ad9ca5eb37cfcf12da58 (diff)
downloadmullvadvpn-90f556b9616eb65e40af80915606637473191afe.tar.xz
mullvadvpn-90f556b9616eb65e40af80915606637473191afe.zip
TunnelManager: add message to start tunnel error
-rw-r--r--ios/MullvadVPN/TunnelManager/TunnelManager.swift2
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.")
}
})