From 53d5f4bc7c12cfcf62f728c0d774913ae7ff29dc Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Mon, 29 Jul 2024 20:43:01 -0700 Subject: [PATCH] Add debug to meshlog and appdata views --- Meshtastic/Views/Settings/Settings.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Meshtastic/Views/Settings/Settings.swift b/Meshtastic/Views/Settings/Settings.swift index faad71ad..53bc5eb2 100644 --- a/Meshtastic/Views/Settings/Settings.swift +++ b/Meshtastic/Views/Settings/Settings.swift @@ -469,13 +469,17 @@ struct Settings: View { case .telemetry: TelemetryConfig(node: node) case .meshLog: +#if DEBUG MeshLog() +#endif case .debugLogs: if #available(iOS 17.4, *) { AppLog() } case .appFiles: +#if DEBUG AppData() +#endif case .firmwareUpdates: Firmware(node: node) }