logRecords abstract method

void logRecords(
  1. Iterable<BufferedLogRecord> records
)

Delivers a batch of buffered log records to a logging provider.

Once this function returns, the implementation should no longer access the records or state referenced by the records parameter, as these instances may be recycled for subsequent logging operations.

Implementation

void logRecords(Iterable<BufferedLogRecord> records);