DebugLoggingSettings constructor

DebugLoggingSettings({
  1. bool enabled = kDebugMode,
  2. List<RegExp> excludeFilter = const [],
  3. int maxLogMessageLength = -1,
  4. bool usePrint = false,
})

Implementation

DebugLoggingSettings({
  this.enabled = kDebugMode,
  this.excludeFilter = const [],
  this.maxLogMessageLength = -1,
  this.usePrint = false,
});