RFC 5424 severity levels, lowest number is most severe.
The numeric value is half of the PRI calculation: PRI = facility * 8 + severity. Pass a member of this enum, its number, or its lowercase name to any logging call.
PRI = facility * 8 + severity
1.0.0
import { Severity } from 'edgeport/syslog';console.log(Severity.error); // 3 Copy
import { Severity } from 'edgeport/syslog';console.log(Severity.error); // 3
RFC 5424 severity levels, lowest number is most severe.
The numeric value is half of the PRI calculation:
PRI = facility * 8 + severity. Pass a member of this enum, its number, or its lowercase name to any logging call.Since
1.0.0
Example