mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat(settings): make log level configurable from UI (#704)
* feat(settings): set log level * fix: light theme colors * fix: light theme colors size unit
This commit is contained in:
parent
8cb4a0244c
commit
ac276868fb
11 changed files with 310 additions and 30 deletions
|
@ -422,6 +422,9 @@ export const DownloadRuleConditionOptions: OptionBasic[] = [
|
|||
}
|
||||
];
|
||||
|
||||
const logLevel = ["DEBUG", "INFO", "WARN", "ERROR", "TRACE"] as const;
|
||||
|
||||
export const LogLevelOptions = logLevel.map(v => ({ value: v, label: v, key: v }));
|
||||
|
||||
export interface SelectOption {
|
||||
label: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue