node-microsvc-lib
Version:
NodeJS microservice framework library
16 lines • 511 B
JavaScript
/**
* Created by pedrosousabarreto@gmail.com on 15/Jan/2019.
*/
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogLevels = void 0;
var LogLevels;
(function (LogLevels) {
LogLevels["TRACE"] = "TRACE";
LogLevels["DEBUG"] = "DEBUG";
LogLevels["INFO"] = "INFO";
LogLevels["WARN"] = "WARN";
LogLevels["ERROR"] = "ERROR";
LogLevels["FATAL"] = "FATAL";
})(LogLevels = exports.LogLevels || (exports.LogLevels = {}));
//# sourceMappingURL=interfaces.js.map