mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-01-22 01:32:11 +00:00
14 lines
244 B
TypeScript
14 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',
|
||
|
}
|