feat: Add logging stack configuration and related localization

This commit is contained in:
2025-01-03 03:10:23 +00:00
committed by GitHub
parent 053184d769
commit 7ed8f4d529
9 changed files with 373 additions and 4 deletions

View File

@@ -329,6 +329,18 @@ class _ServerSettingsPage extends State<ServerSettingsPage>
},
label: Text(i18n.enableServerTiming),
)),
_buildWithVecticalPadding(LabeledCheckbox(
value: _now.loggingStack ?? _config!.loggingStack,
onChanged: (b) {
if (b != null) {
setState(() {
_now.loggingStack = b;
_changed = true;
});
}
},
label: Text(i18n.loggingStack),
)),
]));
}