mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-15 11:07:00 +01:00
log filtering
This commit is contained in:
parent
d15405ef56
commit
a2627aa520
3 changed files with 44 additions and 16 deletions
|
|
@ -1,15 +1,15 @@
|
|||
export const DEBUG = 10
|
||||
export const INFO = 20
|
||||
export const WARNING = 30
|
||||
export const ERROR = 40
|
||||
export const CRITICAL = 50
|
||||
export const LOG_LEVEL_DEBUG = 10
|
||||
export const LOG_LEVEL_INFO = 20
|
||||
export const LOG_LEVEL_WARNING = 30
|
||||
export const LOG_LEVEL_ERROR = 40
|
||||
export const LOG_LEVEL_CRITICAL = 50
|
||||
|
||||
export const LOG_LEVELS = [
|
||||
{id: DEBUG, name: "DEBUG"},
|
||||
{id: INFO, name: "INFO"},
|
||||
{id: WARNING, name: "WARNING"},
|
||||
{id: ERROR, name: "ERROR"},
|
||||
{id: CRITICAL, name: "CRITICAL"}
|
||||
{id: LOG_LEVEL_DEBUG, name: "DEBUG"},
|
||||
{id: LOG_LEVEL_INFO, name: "INFO"},
|
||||
{id: LOG_LEVEL_WARNING, name: "WARNING"},
|
||||
{id: LOG_LEVEL_ERROR, name: "ERROR"},
|
||||
{id: LOG_LEVEL_CRITICAL, name: "CRITICAL"}
|
||||
]
|
||||
|
||||
export interface PaperlessLog {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue