journalctl-ts
Version:
A journalctl client for node, written in Typescript
22 lines • 588 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JOURNALD_PRIORITY_STRING = exports.DEBUG = exports.INFO = exports.NOTICE = exports.WARNING = exports.ERROR = exports.CRIT = exports.ALERT = exports.EMERG = void 0;
exports.EMERG = 0;
exports.ALERT = 1;
exports.CRIT = 2;
exports.ERROR = 3;
exports.WARNING = 4;
exports.NOTICE = 5;
exports.INFO = 6;
exports.DEBUG = 7;
exports.JOURNALD_PRIORITY_STRING = [
"EMERG",
"ALERT",
"CRIT",
"ERROR",
"WARNING",
"NOTICE",
"INFO",
"DEBUG",
];
//# sourceMappingURL=JournalDEntry.js.map