logsEnabled property

List<String> get logsEnabled

True if AFib should display internal log statements.

Implementation

List<String> get logsEnabled {
  final result = List<String>.from(AFConfigEntries.logsEnabled.areasFor(this));
  if(result.contains(AFConfigEntryLogArea.standard)) {
    _addIfMissing(result, AFConfigEntryLogArea.afRoute);
    _addIfMissing(result, AFConfigEntryLogArea.afState);
    _addIfMissing(result, AFConfigEntryLogArea.afState);
    _addIfMissing(result, AFConfigEntryLogArea.query);
    _addIfMissing(result, AFConfigEntryLogArea.ui);
  }

  return result;
}