logkitten
Version:
Stream Android and iOS logs without Android Studio or Console.app, with programmatic Node.js API for log analysis.
16 lines (15 loc) • 460 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Level = void 0;
let Level = exports.Level = /*#__PURE__*/function (Level) {
Level[Level["TRACE"] = 10] = "TRACE";
Level[Level["DEBUG"] = 20] = "DEBUG";
Level[Level["INFO"] = 30] = "INFO";
Level[Level["WARN"] = 40] = "WARN";
Level[Level["ERROR"] = 50] = "ERROR";
Level[Level["FATAL"] = 60] = "FATAL";
return Level;
}({});
//# sourceMappingURL=constants.js.map