UNPKG

journalctl-ts

Version:

A journalctl client for node, written in Typescript

19 lines 384 B
export const EMERG = 0; export const ALERT = 1; export const CRIT = 2; export const ERROR = 3; export const WARNING = 4; export const NOTICE = 5; export const INFO = 6; export const DEBUG = 7; export const JOURNALD_PRIORITY_STRING = [ "EMERG", "ALERT", "CRIT", "ERROR", "WARNING", "NOTICE", "INFO", "DEBUG", ]; //# sourceMappingURL=JournalDEntry.js.map