Remove unused 'Verbose Status Check Logging' toggle

This toggle was UI-only with no actual implementation. It was intended for
controlling verbose logging of remote service health checks but was never
connected to any logging logic.
This commit is contained in:
Peter Steinberger 2025-07-29 10:27:10 +02:00
parent 89b30d0d8c
commit 909a9e8249

View file

@ -117,8 +117,6 @@ struct DebugSettingsView: View {
private struct DebugOptionsSection: View {
@Binding var debugMode: Bool
@Binding var logLevel: String
@AppStorage("verboseStatusCheckLogging")
private var verboseStatusCheckLogging = false
var body: some View {
Section {
@ -139,13 +137,6 @@ private struct DebugOptionsSection: View {
.font(.caption)
.foregroundStyle(.secondary)
}
VStack(alignment: .leading, spacing: 4) {
Toggle("Verbose Status Check Logging", isOn: $verboseStatusCheckLogging)
Text("Log detailed information about remote service status checks.")
.font(.caption)
.foregroundStyle(.secondary)
}
} header: {
Text("Debug Options")
.font(.headline)