enableStorageOutput method

LogError enableStorageOutput({
  1. String logger = 'Main',
  2. bool exclusive = false,
})

Implementation

LogError enableStorageOutput(
    {String logger = 'Main', bool exclusive = false}) {
  return loggerMap[logger]?.enableStorageOutput(exclusive) ??
      LogError(-1, message: 'Logger not found [$logger]');
}