UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

62 lines 1.48 kB
"use strict"; // ------------------------------------------------------------------------------ // Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. // ------------------------------------------------------------------------------ Object.defineProperty(exports, "__esModule", { value: true }); exports.LogLevel = void 0; /** * Robotlegs log level */ var LogLevel = /** @class */ (function () { function LogLevel() { } /*============================================================================*/ /* Public Static Properties */ /*============================================================================*/ LogLevel.FATAL = 2; LogLevel.ERROR = 4; LogLevel.WARN = 8; LogLevel.INFO = 16; LogLevel.DEBUG = 32; LogLevel.NAME = [ 0, 0, "FATAL", 0, "ERROR", 0, 0, 0, "WARN", 0, 0, 0, 0, 0, 0, 0, "INFO", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "DEBUG" ]; // 32 return LogLevel; }()); exports.LogLevel = LogLevel; //# sourceMappingURL=LogLevel.js.map