mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +00:00
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:
parent
89b30d0d8c
commit
909a9e8249
1 changed files with 0 additions and 9 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue