mirror of
https://github.com/simon-ding/polaris.git
synced 2026-03-12 12:40:46 +08:00
chore: upper case log level
This commit is contained in:
@@ -69,12 +69,12 @@ class _SystemSettingsPageState extends ConsumerState<SystemSettingsPage> {
|
||||
),
|
||||
items: const [
|
||||
DropdownMenuItem(
|
||||
value: "debug", child: Text("Debug")),
|
||||
DropdownMenuItem(value: "info", child: Text("Info")),
|
||||
value: "debug", child: Text("DEBUG")),
|
||||
DropdownMenuItem(value: "info", child: Text("INFO")),
|
||||
DropdownMenuItem(
|
||||
value: "warn", child: Text("Warnning")),
|
||||
value: "warn", child: Text("WARNNING")),
|
||||
DropdownMenuItem(
|
||||
value: "error", child: Text("Error")),
|
||||
value: "error", child: Text("ERROR")),
|
||||
],
|
||||
validator: FormBuilderValidators.required(),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user