returnLogEntry method

void returnLogEntry(
  1. LogEntry entry
)

Returns a LogEntry to the pool

Implementation

void returnLogEntry(LogEntry entry) {
  if (_logEntryPool.length < _maxPoolSize) {
    _logEntryPool.add(entry);
  }
}