diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2021-04-12 14:07:44 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2021-05-05 10:56:34 +0200 |
| commit | bdbf5b751f54368087a916196a883cfbdb421e0d (patch) | |
| tree | 7fb124f1c0f84d0342167f369e854ebb076b6f07 | |
| parent | 7f0af8aeab7fe8422dabcd42ca1b314603c92cd6 (diff) | |
| download | mullvadvpn-bdbf5b751f54368087a916196a883cfbdb421e0d.tar.xz mullvadvpn-bdbf5b751f54368087a916196a883cfbdb421e0d.zip | |
RelayCache: update the error message when reading the relay cache to determine if it needs to be updated
| -rw-r--r-- | ios/MullvadVPN/RelayCache.swift | 2 |
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() |
