UNPKG

@croct/logging

Version:

An interoperability layer for logging libraries.

27 lines (26 loc) 749 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LogLevel = void 0; /** * The severity of the log message. */ var LogLevel; (function (LogLevel) { /** * Fine-grained messages that provide context to understand the steps leading * to errors and warnings. */ LogLevel["DEBUG"] = "debug"; /** * Informational messages that highlight the system state and progress. */ LogLevel["INFO"] = "info"; /** * Potential issues that might be problems or might not. */ LogLevel["WARNING"] = "warning"; /** * Errors that prevent the system from working as intended. */ LogLevel["ERROR"] = "error"; })(LogLevel || (exports.LogLevel = LogLevel = {}));