summaryrefslogtreecommitdiffhomepage
path: root/ios
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2021-04-12 14:07:44 +0200
committerAndrej Mihajlov <and@mullvad.net>2021-05-05 10:56:34 +0200
commitbdbf5b751f54368087a916196a883cfbdb421e0d (patch)
tree7fb124f1c0f84d0342167f369e854ebb076b6f07 /ios
parent7f0af8aeab7fe8422dabcd42ca1b314603c92cd6 (diff)
downloadmullvadvpn-bdbf5b751f54368087a916196a883cfbdb421e0d.tar.xz
mullvadvpn-bdbf5b751f54368087a916196a883cfbdb421e0d.zip
RelayCache: update the error message when reading the relay cache to determine if it needs to be updated
Diffstat (limited to 'ios')
-rw-r--r--ios/MullvadVPN/RelayCache.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/RelayCache.swift b/ios/MullvadVPN/RelayCache.swift
index c561303e49..2d15f9a1fd 100644
--- a/ios/MullvadVPN/RelayCache.swift
+++ b/ios/MullvadVPN/RelayCache.swift
@@ -195,7 +195,7 @@ class RelayCache {
}
case .failure(let readError):
- self.logger.error(chainedError: readError, message: "Failed to read the relay cache")
+ self.logger.error(chainedError: readError, message: "Failed to read the relay cache to determine if it needs to be updated")
if Self.shouldDownloadRelaysOnReadFailure(readError) {
self.downloadRelays()