AWSLogger.protected constructor

  1. @protected
AWSLogger.protected(
  1. String namespace
)

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

@protected
AWSLogger.protected(String namespace) : _logger = Logger(namespace) {
  _init(this);
  _parent?._children.add(this);
}