summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJon Petersson <jon.petersson@mullvad.net>2026-04-25 02:20:10 +0200
committerJon Petersson <jon.petersson@mullvad.net>2026-04-25 02:20:10 +0200
commitfb88fa8a60cd66a23a3b1bbefd3d9fbbc57044c0 (patch)
tree13f13e63291d604bf0814c5266ba4154467b6bbd
parent2b63ec23f5421e54836466d372ea6aadd5bef976 (diff)
downloadmullvadvpn-add-in-app-log-view.tar.xz
mullvadvpn-add-in-app-log-view.zip
Make wireguard logs excluded by defaultadd-in-app-log-view
-rw-r--r--ios/MullvadVPN/View controllers/Logging/LogView.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/View controllers/Logging/LogView.swift b/ios/MullvadVPN/View controllers/Logging/LogView.swift
index 0fe1efa61a..8a916cf76d 100644
--- a/ios/MullvadVPN/View controllers/Logging/LogView.swift
+++ b/ios/MullvadVPN/View controllers/Logging/LogView.swift
@@ -39,7 +39,7 @@ class LogView: UIView {
private var logsArePaused: Bool = false
private var selectedProcess: InAppLogEntry.Process?
private var includedLabels: Set<String> = []
- private var excludedLabels: Set<String> = []
+ private var excludedLabels: Set<String> = ["WireGuard"]
private var exportTask: Task<Void, Never>?
var onExportLogs: ((String) -> Void)?