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
My problem is that in GlossyProducer, the generateBSDDate function creates a date like this:
'Aug 4 14:21:20 '
So the day is padded correctly with leading space. This is the format what syslog-ng can parse, BUT this code, wich joins the message array into the message string, cut that leading space from it and ruins the parseable format:
var compiledMessage = msgData.join(' ').replace(/\s+/g, ' ');
Pls produce a fix for that issue.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
My problem is that in GlossyProducer, the generateBSDDate function creates a date like this:
'Aug 4 14:21:20 '
So the day is padded correctly with leading space. This is the format what syslog-ng can parse, BUT this code, wich joins the message array into the message string, cut that leading space from it and ruins the parseable format:
var compiledMessage = msgData.join(' ').replace(/\s+/g, ' ');
Pls produce a fix for that issue.
Thanks in advance!
The text was updated successfully, but these errors were encountered: