use of alma.ACSLoggingLog.LogBinaryRecord in project ACS by ACS-Community.
the class AcsBinLogFormatter method formatAny.
/**
* This is the method used by ACS, for all AcsLogFormatters.
*/
public Any formatAny(Any anyLogRecord, LogRecord logRecord) {
LogBinaryRecord binLogRecord = formatBinary(logRecord);
LogBinaryRecordHelper.insert(anyLogRecord, binLogRecord);
return anyLogRecord;
}
Aggregations