mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-10 17:38:41 +00:00
19 lines
351 B
JavaScript
19 lines
351 B
JavaScript
/**
|
|
* Log Level enum.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
export const LogLevel = Object.freeze({
|
|
EMERGENCY: 'emergency',
|
|
ALERT: 'alert',
|
|
CRITICAL: 'critical',
|
|
ERROR: 'error',
|
|
WARNING: 'warning',
|
|
NOTICE: 'notice',
|
|
INFO: 'info',
|
|
DEBUG: 'debug'
|
|
});
|