diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2023-06-09 21:20:24 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2023-06-09 21:21:03 +0200 |
| commit | b77b5d46aabbec8313c09b1e1c1409d1d7cdd3a5 (patch) | |
| tree | fecf7625cd61fabffa0f9e290822dc95a93626b5 /ios/MullvadVPN/View controllers/ProblemReport | |
| parent | e528b137273d6f00b1cdf45a809a5fed4a7de87c (diff) | |
| download | mullvadvpn-b77b5d46aabbec8313c09b1e1c1409d1d7cdd3a5.tar.xz mullvadvpn-b77b5d46aabbec8313c09b1e1c1409d1d7cdd3a5.zip | |
Formalize application targets
Diffstat (limited to 'ios/MullvadVPN/View controllers/ProblemReport')
| -rw-r--r-- | ios/MullvadVPN/View controllers/ProblemReport/ProblemReportInteractor.swift | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportInteractor.swift b/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportInteractor.swift index bac2c375a4..65ab298d66 100644 --- a/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportInteractor.swift +++ b/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportInteractor.swift @@ -27,7 +27,9 @@ final class ProblemReportInteractor { redactContainerPathsForSecurityGroupIdentifiers: [securityGroupIdentifier] ) - report.addLogFiles(fileURLs: ApplicationConfiguration.logFileURLs, includeLogBackups: true) + let logFileURLs = ApplicationTarget.allCases.map { ApplicationConfiguration.logFileURL(for: $0) } + + report.addLogFiles(fileURLs: logFileURLs, includeLogBackups: true) return report }() |
