mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-01-21 14:42:36 +00:00
286575315e
Signed-off-by: Philip Molares <philip.molares@udo.edu>
13 lines
244 B
TypeScript
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',
|
|
}
|