1
0
Fork 0
mirror of https://github.com/hedgedoc/hedgedoc.git synced 2025-01-21 14:42:36 +00:00
hedgedoc/src/config/loglevel.enum.ts
Philip Molares 286575315e
Extend config with various options from 1.x
Signed-off-by: Philip Molares <philip.molares@udo.edu>
2020-12-31 22:37:37 +01:00

13 lines
244 B
TypeScript

/*
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
export enum Loglevel {
TRACE = 'trace',
DEBUG = 'debug',
INFO = 'info',
WARN = 'warn',
ERROR = 'error',
}