maxLogs property

int get maxLogs

Maximum number of log entries kept in the ring buffer and on disk.

Implementation

int get maxLogs => _maxLogs;
set maxLogs (int value)

Implementation

set maxLogs(int value) {
  _maxLogs = value;
  _storage = HttpLogStorage(maxLogs: value);
  _trimBuffer();
}