Hi, I think the output of 'severity' is actually the facility value.
And it would would be nice to have a mapping to text.
E.g. using this:
var SEVERITY = [
'emerg',
'alert',
'crit',
'err',
'warning',
'notice',
'info',
'debug'
]
var FACILITY = [
'kern',
'user',
'mail',
'daemon',
'auth',
'syslog',
'lpr',
'news',
'uucp',
'cron',
'authpriv',
'ftp',
'ntp',
'logaudit',
'logalert',
'clock',
'local0',
'local1',
'local2',
'local3',
'local4',
'local5',
'local6',
'local7'
]
Hi, I think the output of 'severity' is actually the facility value.
And it would would be nice to have a mapping to text.
E.g. using this: