Reorder logger level

This commit is contained in:
CzBiX 2020-11-24 13:11:23 +08:00 committed by GitHub
parent 9ca6f4ff2b
commit 1de8d931aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,23 +39,23 @@ const optionsRule = [
const optionsLogLevel = [
{
label: 'info',
value: 'info',
},
{
label: 'warning',
value: 'warning',
},
{
label: 'error',
value: 'error',
},
{
label: 'debug',
label: 'Debug',
value: 'debug',
},
{
label: 'silent',
label: 'Warning',
value: 'warning',
},
{
label: 'Info',
value: 'info',
},
{
label: 'Error',
value: 'error',
},
{
label: 'Silent',
value: 'silent',
},
];