logWriter top-level property
Global writer chain that backs log. Callers configure the chain by adding writers with MultiLogWriter.add and removing them with MultiLogWriter.remove; identity is stable for the process lifetime, so the chain is shared across any number of Log consumers and framework bootstraps.
logWriter.add(MyLogWriter());
log.info('Server started');
Implementation
final MultiLogWriter logWriter = MultiLogWriter([]);