summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMeng Dong <[email protected]>2022-06-09 20:41:18 +0800
committerGitHub <[email protected]>2022-06-09 20:41:18 +0800
commit7ab43cb539f478c7ca8431adcb314733b978c643 (patch)
tree3ce9fc63a4aa26f0de17ba09799505e4446a1a95 /src
parent23932f4859bd8a96559cd3c10ed9d82a247f8b15 (diff)
Fix log level order (#703)
Diffstat (limited to 'src')
-rw-r--r--src/components/Config.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Config.tsx b/src/components/Config.tsx
index 6107789..6c86445 100644
--- a/src/components/Config.tsx
+++ b/src/components/Config.tsx
@@ -25,8 +25,8 @@ const propsList = [{ id: 0 }, { id: 1 }, { id: 2 }, { id: 3 }];
const logLeveOptions = [
['debug', 'Debug'],
- ['warning', 'Warning'],
['info', 'Info'],
+ ['warning', 'Warning'],
['error', 'Error'],
['silent', 'Silent'],
];