enableStorageOutput static method
Enables storage output for the specified logger.
logger: The logger name (defaults to "Main").exclusive: If true, disables other outputs.
Returns: A LogError indicating success or failure.
Implementation
static LogError enableStorageOutput(
{String logger = 'Main', bool exclusive = false}) {
return isCriticalMode
? LogError(-5, message: 'is in critical mode')
: loggerManager.enableStorageOutput(
logger: logger, exclusive: exclusive);
}