smyld-lib-common
Version:
SMYLD Javascript Core Library, contains several core APIs that benefit the developers working on SPA applications
23 lines • 942 B
JavaScript
/**
* @enum {number}
* Defines the available log levels for controlling logging output.
* Higher values include all lower level logs.
*/
export var LogLevel;
(function (LogLevel) {
/** No logs will be displayed */
LogLevel[LogLevel["OFF"] = 0] = "OFF";
/** Only error logs will be displayed */
LogLevel[LogLevel["ERROR"] = 1] = "ERROR";
/** Error and warning logs will be displayed */
LogLevel[LogLevel["WARN"] = 2] = "WARN";
/** Error, warning, and info logs will be displayed */
LogLevel[LogLevel["INFO"] = 3] = "INFO";
/** All logs including debug messages will be displayed */
LogLevel[LogLevel["DEBUG"] = 4] = "DEBUG";
/** All logs will be displayed (same as DEBUG currently) */
LogLevel[LogLevel["ALL"] = 5] = "ALL";
/** Default log level (same as INFO) */
LogLevel[LogLevel["DEFAULT"] = 3] = "DEFAULT";
})(LogLevel || (LogLevel = {}));
//# sourceMappingURL=LogSettings.js.map