Silvano Maffeis
commented on
LOGBACK-754
SyslogAppenderBase does not support all documented facility strings
The lack of the "AUDIT" facility is painful. An "else if" should be added to SyslogAppenderBase.facilityStringToint:
} else if ("AUDIT".equalsIgnoreCase(facilityStr)) {
return SyslogConstants.LOG_AUDIT;
}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your
JIRA administrators
.
For more information on JIRA, see:
http://www.atlassian.com/software/jira
} else if ("AUDIT".equalsIgnoreCase(facilityStr)) {
return SyslogConstants.LOG_AUDIT;
}