AWSLogger.detached constructor

AWSLogger.detached([
  1. String namespace = 'Detached'
])

Creates a detached AWSLogger which is not part of the global hierarchy.

A logging utility providing the ability to emit log entries, configure the level at which entries are emitted, and register plugins which can handle log entries as they're emitted.

Implementation

AWSLogger.detached([String namespace = 'Detached'])
    : _logger = Logger.detached(namespace);