You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on line 65 of node-syslog.js you still have a typo saying "faculty" instead of "facility", resulting in messages being sent as "kern.emerg", popping up all over in the console.
64: this.connect(function (e) {
65: var pri = '<' + ((that.options.faculty * 8) + severity) + '>'; // Message priority
65: var pri = '<' + ((that.options.facility * 8) + severity) + '>'; // Message priority
66: var entry = pri + [
The text was updated successfully, but these errors were encountered:
Hi,
on line 65 of node-syslog.js you still have a typo saying "faculty" instead of "facility", resulting in messages being sent as "kern.emerg", popping up all over in the console.
64: this.connect(function (e) {
66: var entry = pri + [
The text was updated successfully, but these errors were encountered: