mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 09:58:39 +00:00
28 lines
609 B
JavaScript
28 lines
609 B
JavaScript
/**
|
|
* Log Level enum.
|
|
*
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @copyright 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
(function (jsOMS)
|
|
{
|
|
"use strict";
|
|
|
|
/** @namespace jsOMS.Log */
|
|
jsOMS.Autoloader.defineNamespace('jsOMS.Log');
|
|
|
|
jsOMS.Log.LogLevel = Object.freeze({
|
|
EMERGENCY: 'emergency',
|
|
ALERT: 'alert',
|
|
CRITICAL: 'critical',
|
|
ERROR: 'error',
|
|
WARNING: 'warning',
|
|
NOTICE: 'notice',
|
|
INFO: 'info',
|
|
DEBUG: 'debug'
|
|
});
|
|
}(window.jsOMS = window.jsOMS || {}));
|